From 3e78acc9d8efcb43432d3046177946bf8f4f30e0 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Mon, 11 Nov 2024 03:38:18 +0000 Subject: [PATCH 01/21] feat: add transfer timeout --- storage/client.go | 3 ++- storage/writer.go | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/storage/client.go b/storage/client.go index aebba2251757..9841326b0df2 100644 --- a/storage/client.go +++ b/storage/client.go @@ -237,7 +237,8 @@ type openWriterParams struct { chunkSize int // chunkRetryDeadline - see `Writer.ChunkRetryDeadline`. // Optional. - chunkRetryDeadline time.Duration + chunkRetryDeadline time.Duration + chunkTransferTimeout time.Duration // Object/request properties diff --git a/storage/writer.go b/storage/writer.go index 43a0f0d10937..f6c6dddd9ea4 100644 --- a/storage/writer.go +++ b/storage/writer.go @@ -88,6 +88,18 @@ type Writer struct { // cancellation. ChunkRetryDeadline time.Duration + // ChunkTransferTimeOut sets a per-chunk retry transfer timeout for multi-chunk + // resumable uploads. + // + // For uploads of larger files, the Writer will attempt to retry if the + // request to upload a particular chunk stalls for some time. + // If a single chunk has been attempting to upload for longer than this + // deadline and the request fails, it will be retried. The default value + // is 8s. Users may want to pick a longer deadline if they are using larger + // values for ChunkSize or if they expect to have a slow or unreliable + // internet connection. + ChunkTransferTimeOut time.Duration + // ForceEmptyContentType is an optional parameter that is used to disable // auto-detection of Content-Type. By default, if a blank Content-Type // is provided, then gax.DetermineContentType is called to sniff the type. @@ -188,6 +200,7 @@ func (w *Writer) openWriter() (err error) { ctx: w.ctx, chunkSize: w.ChunkSize, chunkRetryDeadline: w.ChunkRetryDeadline, + chunkTransferTimeout: w.ChunkTransferTimeOut, bucket: w.o.bucket, attrs: &w.ObjectAttrs, conds: w.o.conds, From d2545169a49da87080aebd19f70f7453320c4359 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Mon, 18 Nov 2024 12:56:21 +0000 Subject: [PATCH 02/21] add unit test --- storage/client_test.go | 289 +++++++++++++++++++++++++++++++++++++++++ storage/http_client.go | 3 + 2 files changed, 292 insertions(+) diff --git a/storage/client_test.go b/storage/client_test.go index 928a99a2f2d8..490de242f3ce 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1506,6 +1506,295 @@ func TestRetryReadStallEmulated(t *testing.T) { } } +// Test validates the retry for stalled write-request, when client is created with +// WithReadStallTimeout. +func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated(t *testing.T) { + transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { + _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) + if err != nil { + t.Fatalf("creating bucket: %v", err) + } + instructions := map[string][]string{"storage.objects.insert": {"stall-for-10s-after-1024K"}} + testID := createRetryTest(t, client, instructions) + ctx = callctx.SetHeaders(ctx, "x-retry-test-id", testID) + + prefix := time.Now().Nanosecond() + want := &ObjectAttrs{ + Bucket: bucket, + Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), + Generation: defaultGen, + } + + var gotAttrs *ObjectAttrs + params := &openWriterParams{ + attrs: want, + bucket: bucket, + chunkSize: 2 * 1024 * 1024, + chunkTransferTimeout: 2 * time.Second, + ctx: ctx, + donec: make(chan struct{}), + setError: func(_ error) {}, // no-op + progress: func(_ int64) {}, // no-op + setObj: func(o *ObjectAttrs) { gotAttrs = o }, + } + + start_time := time.Now() + pw, err := client.OpenWriter(params) + if err != nil { + t.Fatalf("failed to open writer: %v", err) + } + buffer := bytes.Repeat([]byte("B"), 5*1024*1024) + if _, err := pw.Write(buffer); err != nil { + t.Fatalf("failed to populate test data: %v", err) + } + if err := pw.Close(); err != nil { + t.Fatalf("closing object: %v", err) + } + end_time := time.Now() + select { + case <-params.donec: + } + if gotAttrs == nil { + t.Fatalf("Writer finished, but resulting object wasn't set") + } + if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { + t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) + } + if end_time.Sub(start_time) > 8*time.Second { + t.Errorf("write took %v, want < %v", end_time.Sub(start_time), 10*time.Second) + } + + r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) + if err != nil { + t.Fatalf("opening reading: %v", err) + } + wantLen := len(buffer) + got := make([]byte, wantLen) + n, err := r.Read(got) + if n != wantLen { + t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) + } + if diff := cmp.Diff(got, buffer); diff != "" { + t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + } + }) +} + +func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated(t *testing.T) { + transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { + _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) + if err != nil { + t.Fatalf("creating bucket: %v", err) + } + instructions := map[string][]string{"storage.objects.insert": {"stall-for-10s-after-1024K"}} + testID := createRetryTest(t, client, instructions) + ctx = callctx.SetHeaders(ctx, "x-retry-test-id", testID) + + prefix := time.Now().Nanosecond() + want := &ObjectAttrs{ + Bucket: bucket, + Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), + Generation: defaultGen, + } + + var gotAttrs *ObjectAttrs + params := &openWriterParams{ + attrs: want, + bucket: bucket, + chunkSize: 2 * 1024 * 1024, + ctx: ctx, + donec: make(chan struct{}), + setError: func(_ error) {}, // no-op + progress: func(_ int64) {}, // no-op + setObj: func(o *ObjectAttrs) { gotAttrs = o }, + } + + start_time := time.Now() + pw, err := client.OpenWriter(params) + if err != nil { + t.Fatalf("failed to open writer: %v", err) + } + buffer := bytes.Repeat([]byte("B"), 5*1024*1024) + if _, err := pw.Write(buffer); err != nil { + t.Fatalf("failed to populate test data: %v", err) + } + if err := pw.Close(); err != nil { + t.Fatalf("closing object: %v", err) + } + end_time := time.Now() + select { + case <-params.donec: + } + if gotAttrs == nil { + t.Fatalf("Writer finished, but resulting object wasn't set") + } + if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { + t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) + } + if end_time.Sub(start_time) < 10*time.Second { + t.Errorf("write took %v, want >= %v", end_time.Sub(start_time), 10*time.Second) + } + + r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) + if err != nil { + t.Fatalf("opening reading: %v", err) + } + wantLen := len(buffer) + got := make([]byte, wantLen) + n, err := r.Read(got) + if n != wantLen { + t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) + } + if diff := cmp.Diff(got, buffer); diff != "" { + t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + } + }) +} + +func TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated(t *testing.T) { + transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { + _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) + if err != nil { + t.Fatalf("creating bucket: %v", err) + } + instructions := map[string][]string{"storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}} + testID := createRetryTest(t, client, instructions) + ctx = callctx.SetHeaders(ctx, "x-retry-test-id", testID) + + prefix := time.Now().Nanosecond() + want := &ObjectAttrs{ + Bucket: bucket, + Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), + Generation: defaultGen, + } + + var gotAttrs *ObjectAttrs + params := &openWriterParams{ + attrs: want, + bucket: bucket, + chunkSize: 2 * 1024 * 1024, + chunkTransferTimeout: 2 * time.Second, + ctx: ctx, + donec: make(chan struct{}), + setError: func(_ error) {}, // no-op + progress: func(_ int64) {}, // no-op + setObj: func(o *ObjectAttrs) { gotAttrs = o }, + } + + start_time := time.Now() + pw, err := client.OpenWriter(params) + if err != nil { + t.Fatalf("failed to open writer: %v", err) + } + buffer := bytes.Repeat([]byte("B"), 5*1024*1024) + if _, err := pw.Write(buffer); err != nil { + t.Fatalf("failed to populate test data: %v", err) + } + if err := pw.Close(); err != nil { + t.Fatalf("closing object: %v", err) + } + end_time := time.Now() + select { + case <-params.donec: + } + if gotAttrs == nil { + t.Fatalf("Writer finished, but resulting object wasn't set") + } + if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { + t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) + } + if end_time.Sub(start_time) > 8*time.Second { + t.Errorf("write took %v, want >= %v", end_time.Sub(start_time), 8*time.Second) + } + + r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) + if err != nil { + t.Fatalf("opening reading: %v", err) + } + wantLen := len(buffer) + got := make([]byte, wantLen) + n, err := r.Read(got) + if n != wantLen { + t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) + } + if diff := cmp.Diff(got, buffer); diff != "" { + t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + } + }) +} + +func TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated(t *testing.T) { + transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { + _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) + if err != nil { + t.Fatalf("creating bucket: %v", err) + } + instructions := map[string][]string{"storage.objects.insert": {"stall-for-10s-after-3072K"}} + testID := createRetryTest(t, client, instructions) + ctx = callctx.SetHeaders(ctx, "x-retry-test-id", testID) + + prefix := time.Now().Nanosecond() + want := &ObjectAttrs{ + Bucket: bucket, + Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), + Generation: defaultGen, + } + + var gotAttrs *ObjectAttrs + params := &openWriterParams{ + attrs: want, + bucket: bucket, + chunkSize: 2 * 1024 * 1024, + chunkTransferTimeout: 2 * time.Second, + ctx: ctx, + donec: make(chan struct{}), + setError: func(_ error) {}, // no-op + progress: func(_ int64) {}, // no-op + setObj: func(o *ObjectAttrs) { gotAttrs = o }, + } + + start_time := time.Now() + pw, err := client.OpenWriter(params) + if err != nil { + t.Fatalf("failed to open writer: %v", err) + } + buffer := bytes.Repeat([]byte("B"), 5*1024*1024) + if _, err := pw.Write(buffer); err != nil { + t.Fatalf("failed to populate test data: %v", err) + } + if err := pw.Close(); err != nil { + t.Fatalf("closing object: %v", err) + } + end_time := time.Now() + select { + case <-params.donec: + } + if gotAttrs == nil { + t.Fatalf("Writer finished, but resulting object wasn't set") + } + if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { + t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) + } + if end_time.Sub(start_time) > 8*time.Second { + t.Errorf("write took %v, want < %v", end_time.Sub(start_time), 8*time.Second) + } + + r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) + if err != nil { + t.Fatalf("opening reading: %v", err) + } + wantLen := len(buffer) + got := make([]byte, wantLen) + n, err := r.Read(got) + if n != wantLen { + t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) + } + if diff := cmp.Diff(got, buffer); diff != "" { + t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + } + }) +} + // createRetryTest creates a bucket in the emulator and sets up a test using the // Retry Test API for the given instructions. This is intended for emulator tests // of retry behavior that are not covered by conformance tests. diff --git a/storage/http_client.go b/storage/http_client.go index f0a0853f5bd1..4c62ce930573 100644 --- a/storage/http_client.go +++ b/storage/http_client.go @@ -968,6 +968,9 @@ func (c *httpStorageClient) OpenWriter(params *openWriterParams, opts ...storage if params.chunkRetryDeadline != 0 { mediaOpts = append(mediaOpts, googleapi.ChunkRetryDeadline(params.chunkRetryDeadline)) } + if params.chunkTransferTimeout != 0 { + mediaOpts = append(mediaOpts, googleapi.ChunkTransferTimeout(params.chunkTransferTimeout)) + } pr, pw := io.Pipe() From 6acf0256ecbff9ef08f65da0dcc7e70f635c883c Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Mon, 18 Nov 2024 13:08:01 +0000 Subject: [PATCH 03/21] add comment for unit test --- storage/client_test.go | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/storage/client_test.go b/storage/client_test.go index 490de242f3ce..7cf3f58702d1 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1506,8 +1506,9 @@ func TestRetryReadStallEmulated(t *testing.T) { } } -// Test validates the retry for stalled write-request, when client is created with -// WithReadStallTimeout. +// In resumable uploads, the first chunk encounter a stall. The chunkTransferTimeout will then cancel the request and resend it. +// The second request is expected to succeed. This allows the upload to finish earlier than if it had waited for the entire stall +// duration, as the chunkTransferTimeout prevents unnecessary delays. func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated(t *testing.T) { transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) @@ -1560,8 +1561,8 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated(t *tes if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if end_time.Sub(start_time) > 8*time.Second { - t.Errorf("write took %v, want < %v", end_time.Sub(start_time), 10*time.Second) + if end_time.Sub(start_time) > 6*time.Second { + t.Errorf("write took %v, want < %v", end_time.Sub(start_time), 6*time.Second) } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) @@ -1580,6 +1581,8 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated(t *tes }) } +// In resumable uploads, the first chunk encounter a stall. Because ChunkTransferTimeout is set to 0, +// the upload must wait for the entire stall duration. func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated(t *testing.T) { transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) @@ -1651,6 +1654,9 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated(t *testin }) } +// In resumable uploads, the first chunk encounter a stall twice. The chunkTransferTimeout will then cancel the request and resend it. +// The second request again faced stall chunkTransferTimeout will then cancel the request and resend it. +// This allows the upload to finish earlier than if it had waited for the entire stall duration, as the chunkTransferTimeout prevents unnecessary delays. func TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated(t *testing.T) { transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) @@ -1703,8 +1709,8 @@ func TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated(t if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if end_time.Sub(start_time) > 8*time.Second { - t.Errorf("write took %v, want >= %v", end_time.Sub(start_time), 8*time.Second) + if end_time.Sub(start_time) > 6*time.Second { + t.Errorf("write took %v, want >= %v", end_time.Sub(start_time), 6*time.Second) } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) @@ -1723,6 +1729,9 @@ func TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated(t }) } +// In resumable uploads, the second chunk encounter a stall. The chunkTransferTimeout will then cancel the request and resend it. +// The second request is expected to succeed. This allows the upload to finish earlier than if it had waited for the entire stall +// duration, as the chunkTransferTimeout prevents unnecessary delays. func TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated(t *testing.T) { transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) @@ -1775,8 +1784,8 @@ func TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated(t *te if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if end_time.Sub(start_time) > 8*time.Second { - t.Errorf("write took %v, want < %v", end_time.Sub(start_time), 8*time.Second) + if end_time.Sub(start_time) > 6*time.Second { + t.Errorf("write took %v, want <= %v", end_time.Sub(start_time), 6*time.Second) } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) From d2f9d377702a28e1420cb2e6fd6658630cbd47b7 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Mon, 18 Nov 2024 13:18:13 +0000 Subject: [PATCH 04/21] lint fix --- storage/client_test.go | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/storage/client_test.go b/storage/client_test.go index 7cf3f58702d1..b9ff49850a74 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1539,7 +1539,7 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated(t *tes setObj: func(o *ObjectAttrs) { gotAttrs = o }, } - start_time := time.Now() + startTime := time.Now() pw, err := client.OpenWriter(params) if err != nil { t.Fatalf("failed to open writer: %v", err) @@ -1551,7 +1551,7 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated(t *tes if err := pw.Close(); err != nil { t.Fatalf("closing object: %v", err) } - end_time := time.Now() + endTime := time.Now() select { case <-params.donec: } @@ -1561,8 +1561,8 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated(t *tes if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if end_time.Sub(start_time) > 6*time.Second { - t.Errorf("write took %v, want < %v", end_time.Sub(start_time), 6*time.Second) + if endTime.Sub(startTime) > 6*time.Second { + t.Errorf("write took %v, want < %v", endTime.Sub(startTime), 6*time.Second) } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) @@ -1612,7 +1612,7 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated(t *testin setObj: func(o *ObjectAttrs) { gotAttrs = o }, } - start_time := time.Now() + startTime := time.Now() pw, err := client.OpenWriter(params) if err != nil { t.Fatalf("failed to open writer: %v", err) @@ -1624,7 +1624,7 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated(t *testin if err := pw.Close(); err != nil { t.Fatalf("closing object: %v", err) } - end_time := time.Now() + endTime := time.Now() select { case <-params.donec: } @@ -1634,8 +1634,8 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated(t *testin if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if end_time.Sub(start_time) < 10*time.Second { - t.Errorf("write took %v, want >= %v", end_time.Sub(start_time), 10*time.Second) + if endTime.Sub(startTime) < 10*time.Second { + t.Errorf("write took %v, want >= %v", endTime.Sub(startTime), 10*time.Second) } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) @@ -1687,7 +1687,7 @@ func TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated(t setObj: func(o *ObjectAttrs) { gotAttrs = o }, } - start_time := time.Now() + startTime := time.Now() pw, err := client.OpenWriter(params) if err != nil { t.Fatalf("failed to open writer: %v", err) @@ -1699,7 +1699,7 @@ func TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated(t if err := pw.Close(); err != nil { t.Fatalf("closing object: %v", err) } - end_time := time.Now() + endTime := time.Now() select { case <-params.donec: } @@ -1709,8 +1709,8 @@ func TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated(t if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if end_time.Sub(start_time) > 6*time.Second { - t.Errorf("write took %v, want >= %v", end_time.Sub(start_time), 6*time.Second) + if endTime.Sub(startTime) > 6*time.Second { + t.Errorf("write took %v, want >= %v", endTime.Sub(startTime), 6*time.Second) } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) @@ -1762,7 +1762,7 @@ func TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated(t *te setObj: func(o *ObjectAttrs) { gotAttrs = o }, } - start_time := time.Now() + startTime := time.Now() pw, err := client.OpenWriter(params) if err != nil { t.Fatalf("failed to open writer: %v", err) @@ -1774,7 +1774,7 @@ func TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated(t *te if err := pw.Close(); err != nil { t.Fatalf("closing object: %v", err) } - end_time := time.Now() + endTime := time.Now() select { case <-params.donec: } @@ -1784,8 +1784,8 @@ func TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated(t *te if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if end_time.Sub(start_time) > 6*time.Second { - t.Errorf("write took %v, want <= %v", end_time.Sub(start_time), 6*time.Second) + if endTime.Sub(startTime) > 6*time.Second { + t.Errorf("write took %v, want <= %v", endTime.Sub(startTime), 6*time.Second) } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) From 5e20221b77a63e952bff44e7bb75ce42ff4a2b32 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Wed, 20 Nov 2024 06:32:26 +0000 Subject: [PATCH 05/21] updating table driven test --- storage/client_test.go | 320 ++++++++++++++--------------------------- 1 file changed, 110 insertions(+), 210 deletions(-) diff --git a/storage/client_test.go b/storage/client_test.go index b9ff49850a74..25ff5fb8f5f3 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1506,84 +1506,9 @@ func TestRetryReadStallEmulated(t *testing.T) { } } -// In resumable uploads, the first chunk encounter a stall. The chunkTransferTimeout will then cancel the request and resend it. -// The second request is expected to succeed. This allows the upload to finish earlier than if it had waited for the entire stall -// duration, as the chunkTransferTimeout prevents unnecessary delays. -func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated(t *testing.T) { - transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { - _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) - if err != nil { - t.Fatalf("creating bucket: %v", err) - } - instructions := map[string][]string{"storage.objects.insert": {"stall-for-10s-after-1024K"}} - testID := createRetryTest(t, client, instructions) - ctx = callctx.SetHeaders(ctx, "x-retry-test-id", testID) - - prefix := time.Now().Nanosecond() - want := &ObjectAttrs{ - Bucket: bucket, - Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), - Generation: defaultGen, - } - - var gotAttrs *ObjectAttrs - params := &openWriterParams{ - attrs: want, - bucket: bucket, - chunkSize: 2 * 1024 * 1024, - chunkTransferTimeout: 2 * time.Second, - ctx: ctx, - donec: make(chan struct{}), - setError: func(_ error) {}, // no-op - progress: func(_ int64) {}, // no-op - setObj: func(o *ObjectAttrs) { gotAttrs = o }, - } - - startTime := time.Now() - pw, err := client.OpenWriter(params) - if err != nil { - t.Fatalf("failed to open writer: %v", err) - } - buffer := bytes.Repeat([]byte("B"), 5*1024*1024) - if _, err := pw.Write(buffer); err != nil { - t.Fatalf("failed to populate test data: %v", err) - } - if err := pw.Close(); err != nil { - t.Fatalf("closing object: %v", err) - } - endTime := time.Now() - select { - case <-params.donec: - } - if gotAttrs == nil { - t.Fatalf("Writer finished, but resulting object wasn't set") - } - if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { - t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) - } - if endTime.Sub(startTime) > 6*time.Second { - t.Errorf("write took %v, want < %v", endTime.Sub(startTime), 6*time.Second) - } - - r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) - if err != nil { - t.Fatalf("opening reading: %v", err) - } - wantLen := len(buffer) - got := make([]byte, wantLen) - n, err := r.Read(got) - if n != wantLen { - t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) - } - if diff := cmp.Diff(got, buffer); diff != "" { - t.Fatalf("checking written content: got(-),want(+):\n%s", diff) - } - }) -} - // In resumable uploads, the first chunk encounter a stall. Because ChunkTransferTimeout is set to 0, // the upload must wait for the entire stall duration. -func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated(t *testing.T) { +func TestRetryWriteReqStallWithDefaultTransferTimeoutEmulated(t *testing.T) { transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) if err != nil { @@ -1654,152 +1579,127 @@ func TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated(t *testin }) } -// In resumable uploads, the first chunk encounter a stall twice. The chunkTransferTimeout will then cancel the request and resend it. -// The second request again faced stall chunkTransferTimeout will then cancel the request and resend it. -// This allows the upload to finish earlier than if it had waited for the entire stall duration, as the chunkTransferTimeout prevents unnecessary delays. -func TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated(t *testing.T) { +func TestRetryWriteReqStallEmulated(t *testing.T) { transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) if err != nil { t.Fatalf("creating bucket: %v", err) } - instructions := map[string][]string{"storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}} - testID := createRetryTest(t, client, instructions) - ctx = callctx.SetHeaders(ctx, "x-retry-test-id", testID) - - prefix := time.Now().Nanosecond() - want := &ObjectAttrs{ - Bucket: bucket, - Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), - Generation: defaultGen, - } - - var gotAttrs *ObjectAttrs - params := &openWriterParams{ - attrs: want, - bucket: bucket, - chunkSize: 2 * 1024 * 1024, - chunkTransferTimeout: 2 * time.Second, - ctx: ctx, - donec: make(chan struct{}), - setError: func(_ error) {}, // no-op - progress: func(_ int64) {}, // no-op - setObj: func(o *ObjectAttrs) { gotAttrs = o }, - } - startTime := time.Now() - pw, err := client.OpenWriter(params) - if err != nil { - t.Fatalf("failed to open writer: %v", err) - } - buffer := bytes.Repeat([]byte("B"), 5*1024*1024) - if _, err := pw.Write(buffer); err != nil { - t.Fatalf("failed to populate test data: %v", err) - } - if err := pw.Close(); err != nil { - t.Fatalf("closing object: %v", err) - } - endTime := time.Now() - select { - case <-params.donec: - } - if gotAttrs == nil { - t.Fatalf("Writer finished, but resulting object wasn't set") - } - if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { - t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) - } - if endTime.Sub(startTime) > 6*time.Second { - t.Errorf("write took %v, want >= %v", endTime.Sub(startTime), 6*time.Second) - } - - r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) - if err != nil { - t.Fatalf("opening reading: %v", err) - } - wantLen := len(buffer) - got := make([]byte, wantLen) - n, err := r.Read(got) - if n != wantLen { - t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) - } - if diff := cmp.Diff(got, buffer); diff != "" { - t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + tests := []struct { + name string + instructions map[string][]string + chunkSize int + timeout time.Duration + wantError bool + wantDuration time.Duration + }{ + { + name: "stall-on-first-chunk-with-transfer-timeout-nonzero-emulated", + instructions: map[string][]string{ + "storage.objects.insert": {"stall-for-10s-after-1024K"}, + }, + chunkSize: 2 * 1024 * 1024, + timeout: 2 * time.Second, + wantError: false, + wantDuration: 6 * time.Second, + }, + { + name: "stall-on-second-chunk-with-transfer-timeout-nonzero-emulated", + instructions: map[string][]string{ + "storage.objects.insert": {"stall-for-10s-after-3072K"}, + }, + chunkSize: 2 * 1024 * 1024, + timeout: 2 * time.Second, + wantError: false, + wantDuration: 6 * time.Second, + }, + { + name: "stall-on-first-chunk-twice-with-transfer-timeout-nonzero-emulated", + instructions: map[string][]string{ + "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, + }, + chunkSize: 2 * 1024 * 1024, + timeout: 2 * time.Second, + wantError: false, + wantDuration: 6 * time.Second, + }, } - }) -} -// In resumable uploads, the second chunk encounter a stall. The chunkTransferTimeout will then cancel the request and resend it. -// The second request is expected to succeed. This allows the upload to finish earlier than if it had waited for the entire stall -// duration, as the chunkTransferTimeout prevents unnecessary delays. -func TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated(t *testing.T) { - transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { - _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) - if err != nil { - t.Fatalf("creating bucket: %v", err) - } - instructions := map[string][]string{"storage.objects.insert": {"stall-for-10s-after-3072K"}} - testID := createRetryTest(t, client, instructions) - ctx = callctx.SetHeaders(ctx, "x-retry-test-id", testID) + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + testID := createRetryTest(t, client, tc.instructions) + ctx := callctx.SetHeaders(ctx, "x-retry-test-id", testID) - prefix := time.Now().Nanosecond() - want := &ObjectAttrs{ - Bucket: bucket, - Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), - Generation: defaultGen, - } + prefix := time.Now().Nanosecond() + want := &ObjectAttrs{ + Bucket: bucket, + Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), + Generation: defaultGen, + } - var gotAttrs *ObjectAttrs - params := &openWriterParams{ - attrs: want, - bucket: bucket, - chunkSize: 2 * 1024 * 1024, - chunkTransferTimeout: 2 * time.Second, - ctx: ctx, - donec: make(chan struct{}), - setError: func(_ error) {}, // no-op - progress: func(_ int64) {}, // no-op - setObj: func(o *ObjectAttrs) { gotAttrs = o }, - } + var gotAttrs *ObjectAttrs + params := &openWriterParams{ + attrs: want, + bucket: bucket, + chunkSize: tc.chunkSize, + chunkTransferTimeout: tc.timeout, + ctx: ctx, + donec: make(chan struct{}), + setError: func(_ error) {}, // no-op + progress: func(_ int64) {}, // no-op + setObj: func(o *ObjectAttrs) { gotAttrs = o }, + } - startTime := time.Now() - pw, err := client.OpenWriter(params) - if err != nil { - t.Fatalf("failed to open writer: %v", err) - } - buffer := bytes.Repeat([]byte("B"), 5*1024*1024) - if _, err := pw.Write(buffer); err != nil { - t.Fatalf("failed to populate test data: %v", err) - } - if err := pw.Close(); err != nil { - t.Fatalf("closing object: %v", err) - } - endTime := time.Now() - select { - case <-params.donec: - } - if gotAttrs == nil { - t.Fatalf("Writer finished, but resulting object wasn't set") - } - if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { - t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) - } - if endTime.Sub(startTime) > 6*time.Second { - t.Errorf("write took %v, want <= %v", endTime.Sub(startTime), 6*time.Second) - } + startTime := time.Now() + pw, err := client.OpenWriter(params) + if err != nil { + t.Fatalf("failed to open writer: %v", err) + } + buffer := bytes.Repeat([]byte("B"), 5*1024*1024) + if _, err := pw.Write(buffer); err != nil { + t.Fatalf("failed to populate test data: %v", err) + } + if err := pw.Close(); err != nil { + t.Fatalf("closing object: %v", err) + } + endTime := time.Now() + select { + case <-params.donec: + } + if gotAttrs == nil { + t.Fatalf("Writer finished, but resulting object wasn't set") + } + if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { + t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) + } + if tc.wantError { + if err == nil { + t.Errorf("Expected an error, but got nil") + } + } else { + if err != nil { + t.Errorf("Unexpected error: %v", err) + } + if endTime.Sub(startTime) > tc.wantDuration { + t.Errorf("write took %v, want <= %v", endTime.Sub(startTime), tc.wantDuration) + } + } - r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) - if err != nil { - t.Fatalf("opening reading: %v", err) - } - wantLen := len(buffer) - got := make([]byte, wantLen) - n, err := r.Read(got) - if n != wantLen { - t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) - } - if diff := cmp.Diff(got, buffer); diff != "" { - t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) + if err != nil { + t.Fatalf("opening reading: %v", err) + } + wantLen := len(buffer) + got := make([]byte, wantLen) + n, err := r.Read(got) + if n != wantLen { + t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) + } + if diff := cmp.Diff(got, buffer); diff != "" { + t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + } + }) } }) } From 46dc6be71318347cae7868711229e4b973d0d83f Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Wed, 20 Nov 2024 07:25:24 +0000 Subject: [PATCH 06/21] add unit test for default chunktransfer timeout --- storage/client_test.go | 212 +++++++++++++++++++++++++---------------- 1 file changed, 132 insertions(+), 80 deletions(-) diff --git a/storage/client_test.go b/storage/client_test.go index 25ff5fb8f5f3..55a54bf3872a 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1508,78 +1508,130 @@ func TestRetryReadStallEmulated(t *testing.T) { // In resumable uploads, the first chunk encounter a stall. Because ChunkTransferTimeout is set to 0, // the upload must wait for the entire stall duration. -func TestRetryWriteReqStallWithDefaultTransferTimeoutEmulated(t *testing.T) { +func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) { transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) if err != nil { t.Fatalf("creating bucket: %v", err) } - instructions := map[string][]string{"storage.objects.insert": {"stall-for-10s-after-1024K"}} - testID := createRetryTest(t, client, instructions) - ctx = callctx.SetHeaders(ctx, "x-retry-test-id", testID) - prefix := time.Now().Nanosecond() - want := &ObjectAttrs{ - Bucket: bucket, - Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), - Generation: defaultGen, + tests := []struct { + name string + instructions map[string][]string + chunkSize int + wantError bool + wantDuration time.Duration + }{ + { + name: "stall-on-first-chunk-with-chunk-transfer-timeout-zero", + instructions: map[string][]string{ + "storage.objects.insert": {"stall-for-10s-after-1024K"}, + }, + chunkSize: 2 * 1024 * 1024, + wantError: false, + wantDuration: 10 * time.Second, + }, + { + name: "stall-on-second-chunk-with-chunk-transfer-timeout-zero", + instructions: map[string][]string{ + "storage.objects.insert": {"stall-for-10s-after-3072K"}, + }, + chunkSize: 2 * 1024 * 1024, + wantError: false, + wantDuration: 10 * time.Second, + }, + { + name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero", + instructions: map[string][]string{ + "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, + }, + chunkSize: 2 * 1024 * 1024, + wantError: false, + wantDuration: 10 * time.Second, + }, } - var gotAttrs *ObjectAttrs - params := &openWriterParams{ - attrs: want, - bucket: bucket, - chunkSize: 2 * 1024 * 1024, - ctx: ctx, - donec: make(chan struct{}), - setError: func(_ error) {}, // no-op - progress: func(_ int64) {}, // no-op - setObj: func(o *ObjectAttrs) { gotAttrs = o }, - } + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + testID := createRetryTest(t, client, tc.instructions) + ctx := callctx.SetHeaders(ctx, "x-retry-test-id", testID) - startTime := time.Now() - pw, err := client.OpenWriter(params) - if err != nil { - t.Fatalf("failed to open writer: %v", err) - } - buffer := bytes.Repeat([]byte("B"), 5*1024*1024) - if _, err := pw.Write(buffer); err != nil { - t.Fatalf("failed to populate test data: %v", err) - } - if err := pw.Close(); err != nil { - t.Fatalf("closing object: %v", err) - } - endTime := time.Now() - select { - case <-params.donec: - } - if gotAttrs == nil { - t.Fatalf("Writer finished, but resulting object wasn't set") - } - if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { - t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) - } - if endTime.Sub(startTime) < 10*time.Second { - t.Errorf("write took %v, want >= %v", endTime.Sub(startTime), 10*time.Second) - } + prefix := time.Now().Nanosecond() + want := &ObjectAttrs{ + Bucket: bucket, + Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), + Generation: defaultGen, + } - r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) - if err != nil { - t.Fatalf("opening reading: %v", err) - } - wantLen := len(buffer) - got := make([]byte, wantLen) - n, err := r.Read(got) - if n != wantLen { - t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) - } - if diff := cmp.Diff(got, buffer); diff != "" { - t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + var gotAttrs *ObjectAttrs + params := &openWriterParams{ + attrs: want, + bucket: bucket, + chunkSize: tc.chunkSize, + ctx: ctx, + donec: make(chan struct{}), + setError: func(_ error) {}, // no-op + progress: func(_ int64) {}, // no-op + setObj: func(o *ObjectAttrs) { gotAttrs = o }, + } + + startTime := time.Now() + pw, err := client.OpenWriter(params) + if err != nil { + t.Fatalf("failed to open writer: %v", err) + } + buffer := bytes.Repeat([]byte("B"), 5*1024*1024) + if _, err := pw.Write(buffer); err != nil { + t.Fatalf("failed to populate test data: %v", err) + } + if err := pw.Close(); err != nil { + t.Fatalf("closing object: %v", err) + } + endTime := time.Now() + select { + case <-params.donec: + } + if gotAttrs == nil { + t.Fatalf("Writer finished, but resulting object wasn't set") + } + if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { + t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) + } + if tc.wantError { + if err == nil { + t.Errorf("Expected an error, but got nil") + } + } else { + if err != nil { + t.Errorf("Unexpected error: %v", err) + } + if endTime.Sub(startTime) < tc.wantDuration { + t.Errorf("write took %v, want >= %v", endTime.Sub(startTime), tc.wantDuration) + } + } + + r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) + if err != nil { + t.Fatalf("opening reading: %v", err) + } + wantLen := len(buffer) + got := make([]byte, wantLen) + n, err := r.Read(got) + if n != wantLen { + t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) + } + if diff := cmp.Diff(got, buffer); diff != "" { + t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + } + }) } }) } -func TestRetryWriteReqStallEmulated(t *testing.T) { +// In resumable uploads, the chunk encounter a stall. The chunkTransferTimeout will then cancel the request and resend it. +// The second request is expected to succeed. This allows the upload to finish earlier than if it had waited for the entire stall +// duration, as the chunkTransferTimeout prevents unnecessary delays. +func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) { transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) if err != nil { @@ -1587,42 +1639,42 @@ func TestRetryWriteReqStallEmulated(t *testing.T) { } tests := []struct { - name string - instructions map[string][]string - chunkSize int - timeout time.Duration - wantError bool - wantDuration time.Duration + name string + instructions map[string][]string + chunkSize int + chunkTransferTimeout time.Duration + wantError bool + wantDuration time.Duration }{ { - name: "stall-on-first-chunk-with-transfer-timeout-nonzero-emulated", + name: "stall-on-first-chunk-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ "storage.objects.insert": {"stall-for-10s-after-1024K"}, }, - chunkSize: 2 * 1024 * 1024, - timeout: 2 * time.Second, - wantError: false, - wantDuration: 6 * time.Second, + chunkSize: 2 * 1024 * 1024, + chunkTransferTimeout: 2 * time.Second, + wantError: false, + wantDuration: 6 * time.Second, }, { - name: "stall-on-second-chunk-with-transfer-timeout-nonzero-emulated", + name: "stall-on-second-chunk-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ "storage.objects.insert": {"stall-for-10s-after-3072K"}, }, - chunkSize: 2 * 1024 * 1024, - timeout: 2 * time.Second, - wantError: false, - wantDuration: 6 * time.Second, + chunkSize: 2 * 1024 * 1024, + chunkTransferTimeout: 2 * time.Second, + wantError: false, + wantDuration: 6 * time.Second, }, { - name: "stall-on-first-chunk-twice-with-transfer-timeout-nonzero-emulated", + name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, }, - chunkSize: 2 * 1024 * 1024, - timeout: 2 * time.Second, - wantError: false, - wantDuration: 6 * time.Second, + chunkSize: 2 * 1024 * 1024, + chunkTransferTimeout: 2 * time.Second, + wantError: false, + wantDuration: 6 * time.Second, }, } @@ -1643,7 +1695,7 @@ func TestRetryWriteReqStallEmulated(t *testing.T) { attrs: want, bucket: bucket, chunkSize: tc.chunkSize, - chunkTransferTimeout: tc.timeout, + chunkTransferTimeout: tc.chunkTransferTimeout, ctx: ctx, donec: make(chan struct{}), setError: func(_ error) {}, // no-op From 6a887654b99aedb89e27c63f7b6ff09b79134793 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Wed, 20 Nov 2024 07:33:33 +0000 Subject: [PATCH 07/21] small fix --- storage/client_test.go | 46 +++++++++++++----------------------------- 1 file changed, 14 insertions(+), 32 deletions(-) diff --git a/storage/client_test.go b/storage/client_test.go index 55a54bf3872a..70b425cb69e5 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1519,7 +1519,7 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) name string instructions map[string][]string chunkSize int - wantError bool + fileSize int wantDuration time.Duration }{ { @@ -1528,7 +1528,7 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) "storage.objects.insert": {"stall-for-10s-after-1024K"}, }, chunkSize: 2 * 1024 * 1024, - wantError: false, + fileSize: 5 * 1024 * 1024, wantDuration: 10 * time.Second, }, { @@ -1537,7 +1537,7 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) "storage.objects.insert": {"stall-for-10s-after-3072K"}, }, chunkSize: 2 * 1024 * 1024, - wantError: false, + fileSize: 5 * 1024 * 1024, wantDuration: 10 * time.Second, }, { @@ -1546,7 +1546,7 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, }, chunkSize: 2 * 1024 * 1024, - wantError: false, + fileSize: 5 * 1024 * 1024, wantDuration: 10 * time.Second, }, } @@ -1580,7 +1580,7 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) if err != nil { t.Fatalf("failed to open writer: %v", err) } - buffer := bytes.Repeat([]byte("B"), 5*1024*1024) + buffer := bytes.Repeat([]byte("A"), tc.fileSize) if _, err := pw.Write(buffer); err != nil { t.Fatalf("failed to populate test data: %v", err) } @@ -1597,17 +1597,8 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if tc.wantError { - if err == nil { - t.Errorf("Expected an error, but got nil") - } - } else { - if err != nil { - t.Errorf("Unexpected error: %v", err) - } - if endTime.Sub(startTime) < tc.wantDuration { - t.Errorf("write took %v, want >= %v", endTime.Sub(startTime), tc.wantDuration) - } + if endTime.Sub(startTime) < tc.wantDuration { + t.Errorf("write took %v, want >= %v", endTime.Sub(startTime), tc.wantDuration) } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) @@ -1643,7 +1634,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) instructions map[string][]string chunkSize int chunkTransferTimeout time.Duration - wantError bool + fileSize int wantDuration time.Duration }{ { @@ -1653,7 +1644,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) }, chunkSize: 2 * 1024 * 1024, chunkTransferTimeout: 2 * time.Second, - wantError: false, + fileSize: 5 * 1024 * 1024, wantDuration: 6 * time.Second, }, { @@ -1663,7 +1654,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) }, chunkSize: 2 * 1024 * 1024, chunkTransferTimeout: 2 * time.Second, - wantError: false, + fileSize: 5 * 1024 * 1024, wantDuration: 6 * time.Second, }, { @@ -1673,7 +1664,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) }, chunkSize: 2 * 1024 * 1024, chunkTransferTimeout: 2 * time.Second, - wantError: false, + fileSize: 5 * 1024 * 1024, wantDuration: 6 * time.Second, }, } @@ -1708,7 +1699,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) if err != nil { t.Fatalf("failed to open writer: %v", err) } - buffer := bytes.Repeat([]byte("B"), 5*1024*1024) + buffer := bytes.Repeat([]byte("A"), tc.fileSize) if _, err := pw.Write(buffer); err != nil { t.Fatalf("failed to populate test data: %v", err) } @@ -1725,17 +1716,8 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if tc.wantError { - if err == nil { - t.Errorf("Expected an error, but got nil") - } - } else { - if err != nil { - t.Errorf("Unexpected error: %v", err) - } - if endTime.Sub(startTime) > tc.wantDuration { - t.Errorf("write took %v, want <= %v", endTime.Sub(startTime), tc.wantDuration) - } + if endTime.Sub(startTime) > tc.wantDuration { + t.Errorf("write took %v, want <= %v", endTime.Sub(startTime), tc.wantDuration) } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) From 62d3c3133aef66baf0d2455cc56c88fbce65125e Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Wed, 20 Nov 2024 07:40:11 +0000 Subject: [PATCH 08/21] increse want duration --- storage/client_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/storage/client_test.go b/storage/client_test.go index 70b425cb69e5..0ced02bcc647 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1645,7 +1645,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) chunkSize: 2 * 1024 * 1024, chunkTransferTimeout: 2 * time.Second, fileSize: 5 * 1024 * 1024, - wantDuration: 6 * time.Second, + wantDuration: 3 * time.Second, }, { name: "stall-on-second-chunk-with-chunk-transfer-timeout-nonzero", @@ -1655,7 +1655,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) chunkSize: 2 * 1024 * 1024, chunkTransferTimeout: 2 * time.Second, fileSize: 5 * 1024 * 1024, - wantDuration: 6 * time.Second, + wantDuration: 3 * time.Second, }, { name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero", @@ -1665,7 +1665,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) chunkSize: 2 * 1024 * 1024, chunkTransferTimeout: 2 * time.Second, fileSize: 5 * 1024 * 1024, - wantDuration: 6 * time.Second, + wantDuration: 5 * time.Second, }, } From 4345d1ce68d4d6e9c4190e75dfdbaa578c5dfbcc Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Wed, 20 Nov 2024 07:50:55 +0000 Subject: [PATCH 09/21] remove fixed variable from test struct --- storage/client_test.go | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/storage/client_test.go b/storage/client_test.go index 0ced02bcc647..58a30cb4a39d 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1515,11 +1515,11 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) t.Fatalf("creating bucket: %v", err) } + chunkSize := 2 * 1024 * 1024 // 2 MiB + fileSize := 5 * 1024 * 1024 // 5 MiB tests := []struct { name string instructions map[string][]string - chunkSize int - fileSize int wantDuration time.Duration }{ { @@ -1527,8 +1527,6 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) instructions: map[string][]string{ "storage.objects.insert": {"stall-for-10s-after-1024K"}, }, - chunkSize: 2 * 1024 * 1024, - fileSize: 5 * 1024 * 1024, wantDuration: 10 * time.Second, }, { @@ -1536,8 +1534,6 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) instructions: map[string][]string{ "storage.objects.insert": {"stall-for-10s-after-3072K"}, }, - chunkSize: 2 * 1024 * 1024, - fileSize: 5 * 1024 * 1024, wantDuration: 10 * time.Second, }, { @@ -1545,8 +1541,6 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) instructions: map[string][]string{ "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, }, - chunkSize: 2 * 1024 * 1024, - fileSize: 5 * 1024 * 1024, wantDuration: 10 * time.Second, }, } @@ -1567,7 +1561,7 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) params := &openWriterParams{ attrs: want, bucket: bucket, - chunkSize: tc.chunkSize, + chunkSize: chunkSize, ctx: ctx, donec: make(chan struct{}), setError: func(_ error) {}, // no-op @@ -1580,7 +1574,7 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) if err != nil { t.Fatalf("failed to open writer: %v", err) } - buffer := bytes.Repeat([]byte("A"), tc.fileSize) + buffer := bytes.Repeat([]byte("A"), fileSize) if _, err := pw.Write(buffer); err != nil { t.Fatalf("failed to populate test data: %v", err) } @@ -1629,12 +1623,12 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) t.Fatalf("creating bucket: %v", err) } + chunkSize := 2 * 1024 * 1024 // 2 MiB + fileSize := 5 * 1024 * 1024 // 5 MiB tests := []struct { name string instructions map[string][]string - chunkSize int chunkTransferTimeout time.Duration - fileSize int wantDuration time.Duration }{ { @@ -1642,9 +1636,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) instructions: map[string][]string{ "storage.objects.insert": {"stall-for-10s-after-1024K"}, }, - chunkSize: 2 * 1024 * 1024, chunkTransferTimeout: 2 * time.Second, - fileSize: 5 * 1024 * 1024, wantDuration: 3 * time.Second, }, { @@ -1652,9 +1644,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) instructions: map[string][]string{ "storage.objects.insert": {"stall-for-10s-after-3072K"}, }, - chunkSize: 2 * 1024 * 1024, chunkTransferTimeout: 2 * time.Second, - fileSize: 5 * 1024 * 1024, wantDuration: 3 * time.Second, }, { @@ -1662,9 +1652,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) instructions: map[string][]string{ "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, }, - chunkSize: 2 * 1024 * 1024, chunkTransferTimeout: 2 * time.Second, - fileSize: 5 * 1024 * 1024, wantDuration: 5 * time.Second, }, } @@ -1685,7 +1673,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) params := &openWriterParams{ attrs: want, bucket: bucket, - chunkSize: tc.chunkSize, + chunkSize: chunkSize, chunkTransferTimeout: tc.chunkTransferTimeout, ctx: ctx, donec: make(chan struct{}), @@ -1699,7 +1687,7 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) if err != nil { t.Fatalf("failed to open writer: %v", err) } - buffer := bytes.Repeat([]byte("A"), tc.fileSize) + buffer := bytes.Repeat([]byte("A"), fileSize) if _, err := pw.Write(buffer); err != nil { t.Fatalf("failed to populate test data: %v", err) } From 688e6f26f91eb4aff9e9e9813aebd8cb8a103dfd Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Thu, 21 Nov 2024 15:54:58 +0000 Subject: [PATCH 10/21] upgrade googleapi package --- storage/go.mod | 30 +++++++++++----------- storage/go.sum | 68 +++++++++++++++++++++++++------------------------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/storage/go.mod b/storage/go.mod index 711999ed472b..19c4884942bb 100644 --- a/storage/go.mod +++ b/storage/go.mod @@ -7,32 +7,32 @@ retract [v1.25.0, v1.27.0] // due to https://github.com/googleapis/google-cloud- require ( cloud.google.com/go v0.116.0 cloud.google.com/go/compute/metadata v0.5.2 - cloud.google.com/go/iam v1.2.1 - cloud.google.com/go/longrunning v0.6.1 + cloud.google.com/go/iam v1.2.2 + cloud.google.com/go/longrunning v0.6.2 github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 github.com/google/go-cmp v0.6.0 github.com/google/uuid v1.6.0 - github.com/googleapis/gax-go/v2 v2.13.0 + github.com/googleapis/gax-go/v2 v2.14.0 go.opentelemetry.io/contrib/detectors/gcp v1.29.0 go.opentelemetry.io/otel v1.29.0 go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.29.0 go.opentelemetry.io/otel/sdk v1.29.0 go.opentelemetry.io/otel/sdk/metric v1.29.0 - golang.org/x/oauth2 v0.23.0 - golang.org/x/sync v0.8.0 - google.golang.org/api v0.203.0 - google.golang.org/genproto v0.0.0-20241015192408-796eee8c2d53 - google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 + golang.org/x/oauth2 v0.24.0 + golang.org/x/sync v0.9.0 + google.golang.org/api v0.208.0 + google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f + google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 google.golang.org/grpc v1.67.1 google.golang.org/grpc/stats/opentelemetry v0.0.0-20240907200651-3ffb98b2c93a - google.golang.org/protobuf v1.35.1 + google.golang.org/protobuf v1.35.2 ) require ( cel.dev/expr v0.16.1 // indirect cloud.google.com/go/auth v0.10.2 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.5 // indirect - cloud.google.com/go/monitoring v1.21.1 // indirect + cloud.google.com/go/monitoring v1.21.2 // indirect github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1 // indirect github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect @@ -53,10 +53,10 @@ require ( go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect go.opentelemetry.io/otel/metric v1.29.0 // indirect go.opentelemetry.io/otel/trace v1.29.0 // indirect - golang.org/x/crypto v0.28.0 // indirect - golang.org/x/net v0.30.0 // indirect + golang.org/x/crypto v0.29.0 // indirect + golang.org/x/net v0.31.0 // indirect golang.org/x/sys v0.27.0 // indirect - golang.org/x/text v0.19.0 // indirect - golang.org/x/time v0.7.0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect + golang.org/x/text v0.20.0 // indirect + golang.org/x/time v0.8.0 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f // indirect ) diff --git a/storage/go.sum b/storage/go.sum index 482c6888d478..1e8daba1c6f8 100644 --- a/storage/go.sum +++ b/storage/go.sum @@ -9,16 +9,16 @@ cloud.google.com/go/auth/oauth2adapt v0.2.5 h1:2p29+dePqsCHPP1bqDJcKj4qxRyYCcbzK cloud.google.com/go/auth/oauth2adapt v0.2.5/go.mod h1:AlmsELtlEBnaNTL7jCj8VQFLy6mbZv0s4Q7NGBeQ5E8= cloud.google.com/go/compute/metadata v0.5.2 h1:UxK4uu/Tn+I3p2dYWTfiX4wva7aYlKixAHn3fyqngqo= cloud.google.com/go/compute/metadata v0.5.2/go.mod h1:C66sj2AluDcIqakBq/M8lw8/ybHgOZqin2obFxa/E5k= -cloud.google.com/go/iam v1.2.1 h1:QFct02HRb7H12J/3utj0qf5tobFh9V4vR6h9eX5EBRU= -cloud.google.com/go/iam v1.2.1/go.mod h1:3VUIJDPpwT6p/amXRC5GY8fCCh70lxPygguVtI0Z4/g= -cloud.google.com/go/logging v1.11.0 h1:v3ktVzXMV7CwHq1MBF65wcqLMA7i+z3YxbUsoK7mOKs= -cloud.google.com/go/logging v1.11.0/go.mod h1:5LDiJC/RxTt+fHc1LAt20R9TKiUTReDg6RuuFOZ67+A= -cloud.google.com/go/longrunning v0.6.1 h1:lOLTFxYpr8hcRtcwWir5ITh1PAKUD/sG2lKrTSYjyMc= -cloud.google.com/go/longrunning v0.6.1/go.mod h1:nHISoOZpBcmlwbJmiVk5oDRz0qG/ZxPynEGs1iZ79s0= -cloud.google.com/go/monitoring v1.21.1 h1:zWtbIoBMnU5LP9A/fz8LmWMGHpk4skdfeiaa66QdFGc= -cloud.google.com/go/monitoring v1.21.1/go.mod h1:Rj++LKrlht9uBi8+Eb530dIrzG/cU/lB8mt+lbeFK1c= -cloud.google.com/go/trace v1.11.1 h1:UNqdP+HYYtnm6lb91aNA5JQ0X14GnxkABGlfz2PzPew= -cloud.google.com/go/trace v1.11.1/go.mod h1:IQKNQuBzH72EGaXEodKlNJrWykGZxet2zgjtS60OtjA= +cloud.google.com/go/iam v1.2.2 h1:ozUSofHUGf/F4tCNy/mu9tHLTaxZFLOUiKzjcgWHGIA= +cloud.google.com/go/iam v1.2.2/go.mod h1:0Ys8ccaZHdI1dEUilwzqng/6ps2YB6vRsjIe00/+6JY= +cloud.google.com/go/logging v1.12.0 h1:ex1igYcGFd4S/RZWOCU51StlIEuey5bjqwH9ZYjHibk= +cloud.google.com/go/logging v1.12.0/go.mod h1:wwYBt5HlYP1InnrtYI0wtwttpVU1rifnMT7RejksUAM= +cloud.google.com/go/longrunning v0.6.2 h1:xjDfh1pQcWPEvnfjZmwjKQEcHnpz6lHjfy7Fo0MK+hc= +cloud.google.com/go/longrunning v0.6.2/go.mod h1:k/vIs83RN4bE3YCswdXC5PFfWVILjm3hpEUlSko4PiI= +cloud.google.com/go/monitoring v1.21.2 h1:FChwVtClH19E7pJ+e0xUhJPGksctZNVOk2UhMmblmdU= +cloud.google.com/go/monitoring v1.21.2/go.mod h1:hS3pXvaG8KgWTSz+dAdyzPrGUYmi2Q+WFX8g2hqVEZU= +cloud.google.com/go/trace v1.11.2 h1:4ZmaBdL8Ng/ajrgKqY5jfvzqMXbrDcBsUGXOT9aqTtI= +cloud.google.com/go/trace v1.11.2/go.mod h1:bn7OwXd4pd5rFuAnTrzBuoZ4ax2XQeG3qNgYmfCy0Io= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1 h1:pB2F2JKCj1Znmp2rwxxt1J0Fg0wezTMgWYk5Mpbi1kg= github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1/go.mod h1:itPGVDKf9cC/ov4MdvJ2QZ0khw4bfoo9jzwTJlaxy2k= @@ -90,8 +90,8 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/enterprise-certificate-proxy v0.3.4 h1:XYIDZApgAnrN1c855gTgghdIA6Stxb52D5RnLI1SLyw= github.com/googleapis/enterprise-certificate-proxy v0.3.4/go.mod h1:YKe7cfqYXjKGpGvmSg28/fFvhNzinZQm8DGnaburhGA= -github.com/googleapis/gax-go/v2 v2.13.0 h1:yitjD5f7jQHhyDsnhKEBU52NdvvdSeGzlAnDPT0hH1s= -github.com/googleapis/gax-go/v2 v2.13.0/go.mod h1:Z/fvTZXF8/uw7Xu5GuslPw+bplx6SS338j1Is2S+B7A= +github.com/googleapis/gax-go/v2 v2.14.0 h1:f+jMrjBPl+DL9nI4IQzLUxMq7XrAqFYB7hBPqMNIe8o= +github.com/googleapis/gax-go/v2 v2.14.0/go.mod h1:lhBCnjdLrWRaPvLWhmc8IS24m9mr07qSYnHncrgo+zk= github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 h1:GFCKgmp0tecUJ0sJuv4pzYCqS9+RGSn52M3FUwPs+uo= github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10/go.mod h1:t/avpk3KcrXxUnYOhZhMXJlSEyie6gQbtLq5NM3loB8= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= @@ -127,8 +127,8 @@ go.opentelemetry.io/otel/trace v1.29.0 h1:J/8ZNK4XgR7a21DZUAsbF8pZ5Jcw1VhACmnYt3 go.opentelemetry.io/otel/trace v1.29.0/go.mod h1:eHl3w0sp3paPkYstJOmAimxhiFXPg+MMTlEh3nsQgWQ= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw= -golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U= +golang.org/x/crypto v0.29.0 h1:L5SG1JTTXupVV3n6sUqMTeWbjAyfPwoda2DLX8J8FrQ= +golang.org/x/crypto v0.29.0/go.mod h1:+F4F4N5hv6v38hfeYwTdx20oUvLLc+QfrE9Ax9HtgRg= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= @@ -139,16 +139,16 @@ golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4= -golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU= +golang.org/x/net v0.31.0 h1:68CPQngjLL0r2AlUKiSxtQFKvzRVbnzLwMUn5SzcLHo= +golang.org/x/net v0.31.0/go.mod h1:P4fl1q7dY2hnZFxEk4pPSkDHF+QqjitcnDjUQyMM+pM= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs= -golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= +golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE= +golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= -golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.9.0 h1:fEo0HyrW1GIgZdpbhCRO0PkJajUS5H9IFUztCgEo2jQ= +golang.org/x/sync v0.9.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -157,29 +157,29 @@ golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s= golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM= -golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= -golang.org/x/time v0.7.0 h1:ntUhktv3OPE6TgYxXWv9vKvUSJyIFJlyohwbkEwPrKQ= -golang.org/x/time v0.7.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= +golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug= +golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4= +golang.org/x/time v0.8.0 h1:9i3RxcPv3PZnitoVGMPDKZSq1xW1gK1Xy3ArNOGZfEg= +golang.org/x/time v0.8.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/api v0.203.0 h1:SrEeuwU3S11Wlscsn+LA1kb/Y5xT8uggJSkIhD08NAU= -google.golang.org/api v0.203.0/go.mod h1:BuOVyCSYEPwJb3npWvDnNmFI92f3GeRnHNkETneT3SI= +google.golang.org/api v0.208.0 h1:8Y62MUGRviQnnP9/41/bYAGySPKAN9iwzV96ZvhwyVE= +google.golang.org/api v0.208.0/go.mod h1:I53S168Yr/PNDNMi5yPnDc0/LGRZO6o7PoEbl/HY3CM= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20241015192408-796eee8c2d53 h1:Df6WuGvthPzc+JiQ/G+m+sNX24kc0aTBqoDN/0yyykE= -google.golang.org/genproto v0.0.0-20241015192408-796eee8c2d53/go.mod h1:fheguH3Am2dGp1LfXkrvwqC/KlFq8F0nLq3LryOMrrE= -google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 h1:T6rh4haD3GVYsgEfWExoCZA2o2FmbNyKpTuAxbEFPTg= -google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9/go.mod h1:wp2WsuBYj6j8wUdo3ToZsdxxixbvQNAHqVJrTgi5E5M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 h1:X58yt85/IXCx0Y3ZwN6sEIKZzQtDEYaBWrDvErdXrRE= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= +google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f h1:zDoHYmMzMacIdjNe+P2XiTmPsLawi/pCbSPfxt6lTfw= +google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f/go.mod h1:Q5m6g8b5KaFFzsQFIGdJkSJDGeJiybVenoYFMMa3ohI= +google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 h1:M0KvPgPmDZHPlbRbaNU1APr28TvwvvdUPlSv7PUvy8g= +google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28/go.mod h1:dguCy7UOdZhTvLzDyt15+rOrawrpM4q7DD9dQ1P11P4= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f h1:C1QccEa9kUwvMgEUORqQD9S17QesQijxjZ84sO82mfo= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= @@ -198,8 +198,8 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -google.golang.org/protobuf v1.35.1 h1:m3LfL6/Ca+fqnjnlqQXNpFPABW1UD7mjh8KO2mKFytA= -google.golang.org/protobuf v1.35.1/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= +google.golang.org/protobuf v1.35.2 h1:8Ar7bF+apOIoThw1EdZl0p1oWvMqTHmpA2fRTyZO8io= +google.golang.org/protobuf v1.35.2/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= From 005eab0fba6ca3cf2c72152916a3612a7c337567 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Thu, 21 Nov 2024 16:02:12 +0000 Subject: [PATCH 11/21] updated comment --- storage/writer.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/storage/writer.go b/storage/writer.go index f6c6dddd9ea4..746fc7481e13 100644 --- a/storage/writer.go +++ b/storage/writer.go @@ -94,10 +94,7 @@ type Writer struct { // For uploads of larger files, the Writer will attempt to retry if the // request to upload a particular chunk stalls for some time. // If a single chunk has been attempting to upload for longer than this - // deadline and the request fails, it will be retried. The default value - // is 8s. Users may want to pick a longer deadline if they are using larger - // values for ChunkSize or if they expect to have a slow or unreliable - // internet connection. + // timeout, then it will be retried. The default value no timeout. ChunkTransferTimeOut time.Duration // ForceEmptyContentType is an optional parameter that is used to disable From e060914551790d772e613b36dfb5fcc85868b229 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Fri, 22 Nov 2024 02:40:43 +0000 Subject: [PATCH 12/21] trigger kokoro From e45887bd7d4c100f489e86baf2a6ea215ef320d1 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Mon, 25 Nov 2024 05:14:31 +0000 Subject: [PATCH 13/21] review comments --- storage/client_test.go | 30 +- storage/sponge_log.log | 22980 +++++++++++++++++++++++++++++++++++++++ storage/writer.go | 16 +- 3 files changed, 23003 insertions(+), 23 deletions(-) create mode 100644 storage/sponge_log.log diff --git a/storage/client_test.go b/storage/client_test.go index 58a30cb4a39d..a90375419c6d 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1525,23 +1525,23 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) { name: "stall-on-first-chunk-with-chunk-transfer-timeout-zero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-10s-after-1024K"}, + "storage.objects.insert": {"stall-for-1s-after-1024K"}, }, - wantDuration: 10 * time.Second, + wantDuration: 1 * time.Second, }, { name: "stall-on-second-chunk-with-chunk-transfer-timeout-zero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-10s-after-3072K"}, + "storage.objects.insert": {"stall-for-1s-after-3072K"}, }, - wantDuration: 10 * time.Second, + wantDuration: 1 * time.Second, }, { name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, + "storage.objects.insert": {"stall-for-1s-after-1024K", "stall-for-1s-after-1024K"}, }, - wantDuration: 10 * time.Second, + wantDuration: 1 * time.Second, }, } @@ -1634,26 +1634,26 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) { name: "stall-on-first-chunk-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-10s-after-1024K"}, + "storage.objects.insert": {"stall-for-1s-after-1024K"}, }, - chunkTransferTimeout: 2 * time.Second, - wantDuration: 3 * time.Second, + chunkTransferTimeout: 100 * time.Millisecond, + wantDuration: 1 * time.Second, }, { name: "stall-on-second-chunk-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-10s-after-3072K"}, + "storage.objects.insert": {"stall-for-1s-after-3072K"}, }, - chunkTransferTimeout: 2 * time.Second, - wantDuration: 3 * time.Second, + chunkTransferTimeout: 100 * time.Millisecond, + wantDuration: 1 * time.Second, }, { name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, + "storage.objects.insert": {"stall-for-1s-after-1024K", "stall-for-1s-after-1024K"}, }, - chunkTransferTimeout: 2 * time.Second, - wantDuration: 5 * time.Second, + chunkTransferTimeout: 100 * time.Millisecond, + wantDuration: 1 * time.Second, }, } diff --git a/storage/sponge_log.log b/storage/sponge_log.log new file mode 100644 index 000000000000..7c7571bf6ab4 --- /dev/null +++ b/storage/sponge_log.log @@ -0,0 +1,22980 @@ +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.84s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.83s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/grpc +=== RUN TestGetBucketEmulated/http +--- PASS: TestGetBucketEmulated (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) + --- PASS: TestGetBucketEmulated/http (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1641: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.00s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.02s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.02s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.00s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/grpc +=== RUN TestListObjectsEmulated/http +--- PASS: TestListObjectsEmulated (0.02s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) + --- PASS: TestListObjectsEmulated/http (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.02s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.00s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +=== RUN TestDefaultObjectACLCRUDEmulated/http +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.00s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.00s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/grpc +=== RUN TestOpenWriterEmulated/http +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) + --- PASS: TestOpenWriterEmulated/http (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1641: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1641: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated + client_test.go:1641: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated + client_test.go:1641: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.07s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/http +=== RUN TestRetryMaxAttemptsEmulated/grpc +--- PASS: TestRetryMaxAttemptsEmulated (0.05s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.04s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.02s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryWriteReqStallEmulated (0.00s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (25.44s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.05s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.07s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (0.72s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (2.05s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.27s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.05s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.76s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.75s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.83s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.06s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.47s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.47s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.41s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.14s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (2.26s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (2.38s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (2.03s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) +PASS +ok cloud.google.com/go/storage 27.085s +=== RUN TestRetryWriteReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryWriteReqStallEmulated (0.00s) +PASS +ok cloud.google.com/go/storage 0.173s +=== RUN TestRetryWriteReqStallEmulated +--- FAIL: TestRetryWriteReqStallEmulated (0.00s) +panic: runtime error: invalid memory address or nil pointer dereference [recovered] + panic: runtime error: invalid memory address or nil pointer dereference +[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0xae3b2a] + +goroutine 86 [running]: +testing.tRunner.func1.2({0x1370520, 0x2412210}) + /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/testing/testing.go:1632 +0x230 +testing.tRunner.func1() + /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/testing/testing.go:1635 +0x35e +panic({0x1370520?, 0x2412210?}) + /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/runtime/panic.go:785 +0x132 +google.golang.org/api/transport/http.newSettings({0xc0005b2500, 0x5, 0xc000581c01?}) + /usr/local/google/home/tulsishah/go/pkg/mod/google.golang.org/api@v0.199.0/transport/http/dial.go:202 +0x4a +google.golang.org/api/transport/http.NewClient({0x181bf30, 0xc0002e0180}, {0xc0005b2500?, 0x3?, 0x13883e0?}) + /usr/local/google/home/tulsishah/go/pkg/mod/google.golang.org/api@v0.199.0/transport/http/dial.go:37 +0x32 +cloud.google.com/go/storage.NewClient({0x181bf30, 0xc0002e0180}, {0xc00062af30, 0x1, 0xc0001b0dd0?}) + /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/storage.go:185 +0x60a +cloud.google.com/go/storage.testConfig({0x181bf30?, 0xc0002e0180?}, 0xc0002e41a0, {0xc00062af30?, 0x13883e0?, 0xc000581c08?}) + /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/integration_test.go:233 +0xd7 +cloud.google.com/go/storage.initTransportClients({0x181bf30, 0xc0002e0180}, 0xc0002e41a0, {0xc00062af30, 0x1, 0x1}) + /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/integration_test.go:262 +0x127 +cloud.google.com/go/storage.multiTransportTest({0x181bf30, 0xc0002e0180}, 0xc0002e41a0, 0x16aedd0, {0xc00062af30, 0x1, 0x1}) + /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/integration_test.go:277 +0xaf +cloud.google.com/go/storage.TestRetryWriteReqStallEmulated(0xc0002e41a0) + /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/client_test.go:1514 +0x99 +testing.tRunner(0xc0002e41a0, 0x16ae5c8) + /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/testing/testing.go:1690 +0xf4 +created by testing.(*T).Run in goroutine 1 + /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/testing/testing.go:1743 +0x390 +FAIL cloud.google.com/go/storage 0.181s +FAIL +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/grpc + client_test.go:1514: creating bucket: rpc error: code = Unknown desc = Exception calling application: [Errno 5] Input/output error +=== RUN TestRetryWriteReqStallEmulated/http +--- FAIL: TestRetryWriteReqStallEmulated (1.11s) + --- FAIL: TestRetryWriteReqStallEmulated/grpc (1.10s) + --- PASS: TestRetryWriteReqStallEmulated/http (0.01s) +FAIL +FAIL cloud.google.com/go/storage 1.285s +FAIL +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== RUN TestRetryWriteReqStallEmulated/grpc +--- PASS: TestRetryWriteReqStallEmulated (0.80s) + --- PASS: TestRetryWriteReqStallEmulated/http (0.01s) + --- PASS: TestRetryWriteReqStallEmulated/grpc (0.79s) +PASS +ok cloud.google.com/go/storage 0.976s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http + client_test.go:1576: checking written content: got(-),want(+): +   bytes.Join({ + -  "AAAAAA", + +  "abcdef", +   }, "") +=== RUN TestRetryWriteReqStallEmulated/grpc + client_test.go:1576: checking written content: got(-),want(+): +   bytes.Join({ + -  "AAAAAA", + +  "abcdef", +   }, "") +--- FAIL: TestRetryWriteReqStallEmulated (2.44s) + --- FAIL: TestRetryWriteReqStallEmulated/http (0.17s) + --- FAIL: TestRetryWriteReqStallEmulated/grpc (2.27s) +FAIL +FAIL cloud.google.com/go/storage 2.610s +FAIL +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/grpc +=== RUN TestRetryWriteReqStallEmulated/http +--- PASS: TestRetryWriteReqStallEmulated (56.63s) + --- PASS: TestRetryWriteReqStallEmulated/grpc (29.15s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.48s) +PASS +ok cloud.google.com/go/storage 56.812s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/grpc + client_test.go:1514: creating bucket: rpc error: code = Unknown desc = Exception calling application: [Errno 5] Input/output error +=== RUN TestRetryWriteReqStallEmulated/http +--- FAIL: TestRetryWriteReqStallEmulated (30.84s) + --- FAIL: TestRetryWriteReqStallEmulated/grpc (2.99s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.85s) +FAIL +FAIL cloud.google.com/go/storage 31.021s +FAIL +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== RUN TestRetryWriteReqStallEmulated/grpc + client_test.go:1514: creating bucket: rpc error: code = Unknown desc = Exception calling application: [Errno 5] Input/output error +--- FAIL: TestRetryWriteReqStallEmulated (27.99s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.66s) + --- FAIL: TestRetryWriteReqStallEmulated/grpc (0.33s) +FAIL +FAIL cloud.google.com/go/storage 28.168s +FAIL +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1660: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.60s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.60s) +PASS +ok cloud.google.com/go/storage 27.773s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1660: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.74s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.74s) +PASS +ok cloud.google.com/go/storage 27.919s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1660: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.80s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.80s) +PASS +ok cloud.google.com/go/storage 27.976s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.68s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.68s) +PASS +ok cloud.google.com/go/storage 27.860s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.68s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.68s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http + retry_conformance_test.go:780: creating retry test: err: , resp: &{Status:400 BAD REQUEST StatusCode:400 Proto:HTTP/1.1 ProtoMajor:1 ProtoMinor:1 Header:map[Connection:[keep-alive] Content-Length:[170] Content-Type:[application/json] Date:[Mon, 18 Nov 2024 09:39:43 GMT] Server:[gunicorn]] Body:0xc000398300 ContentLength:170 TransferEncoding:[] Close:false Uncompressed:false Trailer:map[] Request:0xc0001c5400 TLS:} +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- FAIL: TestRetryWriteReqStallEmulated (0.00s) + --- FAIL: TestRetryWriteReqStallEmulated/http (0.00s) +FAIL +FAIL cloud.google.com/go/storage 0.178s +FAIL +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.68s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.68s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.64s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) +PASS +ok cloud.google.com/go/storage 27.818s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.64s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.67s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) +PASS +ok cloud.google.com/go/storage 27.849s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.67s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.67s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.67s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http + client_test.go:1563: write took 106.497805ms, want >= 40s +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- FAIL: TestRetryWriteReqStallEmulated (27.80s) + --- FAIL: TestRetryWriteReqStallEmulated/http (27.80s) +FAIL +FAIL cloud.google.com/go/storage 27.981s +FAIL +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.67s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.64s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.59s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.59s) +PASS +ok cloud.google.com/go/storage 27.766s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.64s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.64s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.78s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.78s) +PASS +ok cloud.google.com/go/storage 27.962s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (27.78s) + --- PASS: TestRetryWriteReqStallEmulated/http (27.78s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (60.99s) + --- PASS: TestRetryWriteReqStallEmulated/http (60.99s) +PASS +ok cloud.google.com/go/storage 61.162s +=== RUN TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (0.00s) +PASS +ok cloud.google.com/go/storage 0.173s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (6.14s) + --- PASS: TestRetryWriteReqStallEmulated/http (6.14s) +PASS +ok cloud.google.com/go/storage 6.312s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (6.08s) + --- PASS: TestRetryWriteReqStallEmulated/http (6.08s) +PASS +ok cloud.google.com/go/storage 6.256s +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http +=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated + client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (8.09s) + --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (8.09s) +PASS +ok cloud.google.com/go/storage 8.264s +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated + client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (0.00s) +PASS +ok cloud.google.com/go/storage 0.172s +=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated +=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http +=== NAME TestRetryWriteReqStallTwiceOnSecondChunkEmulated + client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (8.13s) + --- PASS: TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http (8.13s) +PASS +ok cloud.google.com/go/storage 8.302s +=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated +=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http +=== NAME TestRetryWriteReqStallTwiceOnSecondChunkEmulated + client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (8.13s) + --- PASS: TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http (8.13s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated +=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http +=== NAME TestRetryWriteReqStallTwiceOnSecondChunkEmulated + client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (8.13s) + --- PASS: TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http (8.13s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated + client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (0.00s) +PASS +ok cloud.google.com/go/storage 0.174s +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http +=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated + client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (8.13s) + --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (8.13s) +PASS +ok cloud.google.com/go/storage 8.311s +=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated + client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (0.00s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http +=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated + client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (8.13s) + --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (8.13s) +PASS +ok cloud.google.com/go/storage 8.307s +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http +=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated + client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (14.09s) + --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (14.09s) +PASS +ok cloud.google.com/go/storage 14.259s +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http + client_test.go:1635: write took 10.021577719s, want >= 10s +=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated + client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented +--- FAIL: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (14.12s) + --- FAIL: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (14.12s) +FAIL +FAIL cloud.google.com/go/storage 14.302s +FAIL +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated +=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http +=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated + client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (8.15s) + --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (8.15s) +PASS +ok cloud.google.com/go/storage 8.325s +=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated + client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated (0.00s) +PASS +ok cloud.google.com/go/storage 0.175s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (6.12s) + --- PASS: TestRetryWriteReqStallEmulated/http (6.12s) +PASS +ok cloud.google.com/go/storage 6.296s +=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated + client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated (0.00s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated +=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated/http +=== NAME TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated + client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated (14.10s) + --- PASS: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated/http (14.10s) +PASS +ok cloud.google.com/go/storage 14.279s +=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated + client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated (0.00s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestRetryWriteReqStallEmulated2 +=== RUN TestRetryWriteReqStallEmulated2/http +=== NAME TestRetryWriteReqStallEmulated2 + client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated2 (14.11s) + --- PASS: TestRetryWriteReqStallEmulated2/http (14.11s) +PASS +ok cloud.google.com/go/storage 14.289s +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.62s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.62s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/grpc +=== RUN TestDeleteBucketEmulated/http +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/grpc +=== RUN TestGetBucketEmulated/http +--- PASS: TestGetBucketEmulated (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) + --- PASS: TestGetBucketEmulated/http (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/grpc +=== RUN TestUpdateBucketEmulated/http +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1876: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/grpc +=== RUN TestGetSetTestIamPolicyEmulated/http +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.00s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.01s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.00s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.02s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.02s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.00s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/grpc +=== RUN TestObjectACLCRUDEmulated/http +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== NAME TestDeleteNotificationEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated + client_test.go:1876: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.08s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/grpc +=== RUN TestRetryMaxAttemptsEmulated/http +--- PASS: TestRetryMaxAttemptsEmulated (0.05s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.03s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.05s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (21.05s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.07s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.06s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.06s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.08s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.90s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.05s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.66s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.05s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.53s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.08s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.52s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.85s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.15s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.40s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.03s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.88s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.82s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.78s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) +PASS +ok cloud.google.com/go/storage 22.503s +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.62s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.62s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/grpc +=== RUN TestDeleteBucketEmulated/http +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/grpc +=== RUN TestGetBucketEmulated/http +--- PASS: TestGetBucketEmulated (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) + --- PASS: TestGetBucketEmulated/http (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/grpc +=== RUN TestUpdateBucketEmulated/http +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1876: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/grpc +=== RUN TestGetSetTestIamPolicyEmulated/http +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.00s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.01s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.00s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.02s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.02s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.00s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/grpc +=== RUN TestObjectACLCRUDEmulated/http +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== NAME TestDeleteNotificationEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated + client_test.go:1876: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.08s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/grpc +=== RUN TestRetryMaxAttemptsEmulated/http +--- PASS: TestRetryMaxAttemptsEmulated (0.05s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.03s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.05s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (21.05s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.07s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.06s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.06s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.08s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.90s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.05s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.66s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.05s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.53s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.08s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.52s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.85s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.15s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.40s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.03s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.88s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.82s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.78s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/grpc +=== RUN TestCreateBucketEmulated/http +--- PASS: TestCreateBucketEmulated (0.38s) + --- PASS: TestCreateBucketEmulated/grpc (0.38s) + --- PASS: TestCreateBucketEmulated/http (0.00s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.01s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1876: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.01s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.02s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.01s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.03s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.03s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/grpc +=== RUN TestOpenWriterEmulated/http +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) + --- PASS: TestOpenWriterEmulated/http (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/http +=== NAME TestHMACKeyCRUDEmulated + client_test.go:1876: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.00s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.07s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/grpc +=== RUN TestRetryNeverEmulated/http +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) + --- PASS: TestRetryNeverEmulated/http (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.11s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/http +=== RUN TestRetryMaxAttemptsEmulated/grpc +--- PASS: TestRetryMaxAttemptsEmulated (0.06s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.04s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.01s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated + client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated (6.12s) + --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http (6.12s) +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated + client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated (14.10s) + --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http (14.10s) +=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated + client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated (8.12s) + --- PASS: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http (8.12s) +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated + client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.11s) + --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.11s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (21.63s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.21s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.24s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.06s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.25s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.05s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.26s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.05s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (0.84s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.62s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.06s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.52s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.00s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.06s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.32s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.73s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (3.24s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.37s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.48s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.40s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.80s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.76s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.17s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.78s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.16s) +PASS +ok cloud.google.com/go/storage 57.298s +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated + client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.10s) + --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.10s) +PASS +ok cloud.google.com/go/storage 6.269s +testing: warning: no tests to run +PASS +ok cloud.google.com/go/storage 0.173s [no tests to run] +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/grpc +=== RUN TestCreateBucketEmulated/http +--- PASS: TestCreateBucketEmulated (0.38s) + --- PASS: TestCreateBucketEmulated/grpc (0.38s) + --- PASS: TestCreateBucketEmulated/http (0.00s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.01s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1876: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.01s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.02s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.01s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.03s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.03s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/grpc +=== RUN TestOpenWriterEmulated/http +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) + --- PASS: TestOpenWriterEmulated/http (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated + client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/http +=== NAME TestHMACKeyCRUDEmulated + client_test.go:1876: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.00s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.07s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/grpc +=== RUN TestRetryNeverEmulated/http +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) + --- PASS: TestRetryNeverEmulated/http (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.11s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/http +=== RUN TestRetryMaxAttemptsEmulated/grpc +--- PASS: TestRetryMaxAttemptsEmulated (0.06s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.04s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.01s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated + client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated (6.12s) + --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http (6.12s) +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated + client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated (14.10s) + --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http (14.10s) +=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated + client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated (8.12s) + --- PASS: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http (8.12s) +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated + client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.11s) + --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.11s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (21.63s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.21s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.24s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.06s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.25s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.05s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.26s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.05s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (0.84s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.62s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.06s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.52s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.00s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.06s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.32s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.73s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (3.24s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.37s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.48s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.40s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.80s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.76s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.17s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.78s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.16s) +PASS +ok cloud.google.com/go/storage (cached) +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.57s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.57s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.01s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.00s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/grpc +=== RUN TestUpdateBucketEmulated/http +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1885: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.01s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.01s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.00s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.02s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.02s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.02s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/grpc +=== RUN TestDeleteBucketACLEmulated/http +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.00s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== NAME TestDeleteNotificationEmulated + client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/http +=== NAME TestHMACKeyCRUDEmulated + client_test.go:1885: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.00s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.08s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/grpc +=== RUN TestRetryMaxAttemptsEmulated/http +--- PASS: TestRetryMaxAttemptsEmulated (0.04s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/grpc +=== RUN TestTimeoutErrorEmulated/http +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.06s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.03s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated + client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated (6.14s) + --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http (6.14s) +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated + client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated (14.15s) + --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http (14.15s) +=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated + client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated (0.00s) +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated + client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.14s) + --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.14s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (20.71s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.39s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.07s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.40s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.09s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.05s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.43s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.08s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.55s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.97s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.07s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.30s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.67s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.63s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.09s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.65s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.64s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.38s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.14s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.76s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.78s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.76s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) +PASS +ok cloud.google.com/go/storage 48.555s +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.30s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.30s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.00s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1885: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/grpc +=== RUN TestGetObjectEmulated/http +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/grpc (0.00s) + --- PASS: TestGetObjectEmulated/http (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.01s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.01s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/grpc +=== RUN TestUpdateObjectEmulated/http +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.03s) + --- PASS: TestListObjectsEmulated/http (0.02s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.03s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.02s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.01s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/grpc +=== RUN TestObjectACLCRUDEmulated/http +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated + client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== NAME TestDeleteNotificationEmulated + client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/http +=== NAME TestHMACKeyCRUDEmulated + client_test.go:1885: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.01s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.01s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.08s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/http +=== RUN TestRetryMaxAttemptsEmulated/grpc +--- PASS: TestRetryMaxAttemptsEmulated (0.06s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.04s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.02s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated + client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated (6.11s) + --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http (6.11s) +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated + client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated (14.10s) + --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http (14.10s) +=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated + client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated (8.09s) + --- PASS: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http (8.09s) +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated +=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http +=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated + client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.09s) + --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.09s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (23.75s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.08s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.55s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.10s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.59s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.11s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.59s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.11s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.74s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (2.71s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.90s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.18s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (2.22s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.06s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.96s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.47s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.84s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.83s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.82s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.18s) +PASS +ok cloud.google.com/go/storage 59.324s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== RUN TestRetryWriteReqStallEmulated/http/stall-on-second-chunk-with-transfer-timeout-nonzero-emulated +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1991: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (6.10s) + --- PASS: TestRetryWriteReqStallEmulated/http (6.10s) + --- PASS: TestRetryWriteReqStallEmulated/http/stall-on-second-chunk-with-transfer-timeout-nonzero-emulated (6.09s) +PASS +ok cloud.google.com/go/storage 6.272s +=== RUN TestRetryWriteReqStallEmulated +=== RUN TestRetryWriteReqStallEmulated/http +=== RUN TestRetryWriteReqStallEmulated/http/stall-on-first-chunk-with-transfer-timeout-nonzero-emulated +=== RUN TestRetryWriteReqStallEmulated/http/stall-on-second-chunk-with-transfer-timeout-nonzero-emulated +=== RUN TestRetryWriteReqStallEmulated/http/stall-on-first-chunk-twice-with-transfer-timeout-nonzero-emulated +=== NAME TestRetryWriteReqStallEmulated + client_test.go:1785: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallEmulated (20.37s) + --- PASS: TestRetryWriteReqStallEmulated/http (20.37s) + --- PASS: TestRetryWriteReqStallEmulated/http/stall-on-first-chunk-with-transfer-timeout-nonzero-emulated (6.13s) + --- PASS: TestRetryWriteReqStallEmulated/http/stall-on-second-chunk-with-transfer-timeout-nonzero-emulated (6.12s) + --- PASS: TestRetryWriteReqStallEmulated/http/stall-on-first-chunk-twice-with-transfer-timeout-nonzero-emulated (8.12s) +PASS +ok cloud.google.com/go/storage 20.548s +testing: warning: no tests to run +PASS +ok cloud.google.com/go/storage 0.174s [no tests to run] +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.33s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.33s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.00s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1837: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.00s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.01s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.01s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.00s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.03s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.02s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/grpc +=== RUN TestUpdateBucketACLEmulated/http +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +=== RUN TestDefaultObjectACLCRUDEmulated/http +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.00s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.00s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1837: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1837: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== NAME TestDeleteNotificationEmulated + client_test.go:1837: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/http +=== NAME TestHMACKeyCRUDEmulated + client_test.go:1837: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.00s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.07s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.03s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.11s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/http +=== RUN TestRetryMaxAttemptsEmulated/grpc +--- PASS: TestRetryMaxAttemptsEmulated (0.04s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/grpc +=== RUN TestRetryDeadlineExceedeEmulated/http +--- PASS: TestRetryDeadlineExceedeEmulated (0.04s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.02s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero +=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated + client_test.go:1837: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.48s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.48s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.11s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.07s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.29s) +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero +=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated + client_test.go:1837: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.27s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.27s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.09s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.08s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.10s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (23.66s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.30s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.05s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.07s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.06s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.07s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.40s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.06s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (2.48s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.08s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.23s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.70s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.13s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.09s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (3.13s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.95s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.18s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.05s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.20s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.05s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.18s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.80s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.78s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.77s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) +PASS +ok cloud.google.com/go/storage 87.556s +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/grpc +=== RUN TestCreateBucketEmulated/http +--- PASS: TestCreateBucketEmulated (0.26s) + --- PASS: TestCreateBucketEmulated/grpc (0.26s) + --- PASS: TestCreateBucketEmulated/http (0.00s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.01s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1819: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/grpc +=== RUN TestGetSetTestIamPolicyEmulated/http +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/grpc +=== RUN TestDeleteObjectEmulated/http +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.01s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.02s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.01s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.02s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/grpc +=== RUN TestListObjectsEmulated/http +--- PASS: TestListObjectsEmulated (0.03s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) + --- PASS: TestListObjectsEmulated/http (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.02s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/grpc +=== RUN TestOpenWriterEmulated/http +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) + --- PASS: TestOpenWriterEmulated/http (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== NAME TestDeleteNotificationEmulated + client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated + client_test.go:1819: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.08s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/http +=== RUN TestRetryMaxAttemptsEmulated/grpc +--- PASS: TestRetryMaxAttemptsEmulated (0.04s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.04s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.01s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero +=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated + client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.57s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.57s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.13s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.17s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.27s) +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero +=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated + client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.41s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.41s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.17s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.12s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.11s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (22.33s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.30s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.09s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.22s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.23s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.05s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.05s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.25s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.05s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (0.97s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.05s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.07s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.07s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.37s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.09s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.84s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.65s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (2.31s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.29s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.44s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.38s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.74s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.74s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.77s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) +PASS +ok cloud.google.com/go/storage 86.391s +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/grpc +=== RUN TestCreateBucketEmulated/http +--- PASS: TestCreateBucketEmulated (0.30s) + --- PASS: TestCreateBucketEmulated/grpc (0.30s) + --- PASS: TestCreateBucketEmulated/http (0.00s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.01s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.01s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1819: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.01s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.01s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.01s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.02s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.03s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/grpc +=== RUN TestListBucketACLsEmulated/http +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.00s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== NAME TestDeleteNotificationEmulated + client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/http +=== NAME TestHMACKeyCRUDEmulated + client_test.go:1819: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.01s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.01s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.09s) + --- PASS: TestObjectConditionsEmulated/http (0.05s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/grpc +=== RUN TestRetryTimeoutEmulated/http +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/http +=== RUN TestRetryMaxAttemptsEmulated/grpc +--- PASS: TestRetryMaxAttemptsEmulated (0.03s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.01s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.05s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero +=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated + client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.36s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.36s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.13s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.13s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.11s) +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero + client_test.go:1719: write took 2.019655025s, want <= 2s +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero + client_test.go:1719: write took 2.019473989s, want <= 2s +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero + client_test.go:1719: write took 4.022079738s, want <= 2s +=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated + client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented +--- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.47s) + --- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.47s) + --- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.12s) + --- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.13s) + --- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.22s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (29.77s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.27s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.40s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.08s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.05s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.40s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.09s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.06s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.05s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.43s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.08s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.94s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.06s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.81s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.05s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.84s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.58s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.09s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.68s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.88s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.45s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (3.11s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (3.14s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (3.16s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) +FAIL +FAIL cloud.google.com/go/storage 93.742s +FAIL +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.29s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.29s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.01s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.01s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1819: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/grpc +=== RUN TestGetSetTestIamPolicyEmulated/http +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.01s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.01s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.01s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.03s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.03s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.02s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.01s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.01s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.02s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.02s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== NAME TestDeleteNotificationEmulated + client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/http +=== NAME TestHMACKeyCRUDEmulated + client_test.go:1819: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.01s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.01s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.02s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.01s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.02s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.09s) + --- PASS: TestObjectConditionsEmulated/http (0.05s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.05s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.02s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/grpc +=== RUN TestRetryTimeoutEmulated/http +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/grpc +=== RUN TestRetryMaxAttemptsEmulated/http +--- PASS: TestRetryMaxAttemptsEmulated (0.05s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.01s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.04s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.06s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.03s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero +=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated + client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.42s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.42s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.20s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.12s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.10s) +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero +=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated + client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.46s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.46s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.15s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.18s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.13s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (30.01s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.29s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.56s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.11s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.57s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.11s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.06s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.05s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.61s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.10s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.05s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.78s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.06s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.39s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.05s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.06s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.15s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.08s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.10s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.05s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.03s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.45s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.25s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.89s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.52s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.10s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.10s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.38s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.17s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (2.79s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (2.80s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (3.17s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) +PASS +ok cloud.google.com/go/storage 94.102s +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.30s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.30s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/grpc +=== RUN TestGetBucketEmulated/http +--- PASS: TestGetBucketEmulated (0.01s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) + --- PASS: TestGetBucketEmulated/http (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== NAME TestGetServiceAccountEmulated + client_test.go:1807: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- SKIP: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/grpc +=== RUN TestGetObjectEmulated/http +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/grpc (0.00s) + --- PASS: TestGetObjectEmulated/http (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.02s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.01s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/grpc +=== RUN TestUpdateObjectEmulated/http +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.03s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/http +=== RUN TestListObjectsWithPrefixEmulated/grpc +--- PASS: TestListObjectsWithPrefixEmulated (0.03s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.01s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== NAME TestListNotificationsEmulated + client_test.go:1807: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== NAME TestCreateNotificationEmulated + client_test.go:1807: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== NAME TestDeleteNotificationEmulated + client_test.go:1807: transport "grpc" explicitly skipped: notifications not implemented +--- SKIP: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/http +=== NAME TestHMACKeyCRUDEmulated + client_test.go:1807: transport "grpc" explicitly skipped: hmac not implemented +--- SKIP: TestHMACKeyCRUDEmulated (0.01s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.01s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.03s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.08s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.04s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/http +=== RUN TestRetryMaxAttemptsEmulated/grpc +--- PASS: TestRetryMaxAttemptsEmulated (0.04s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.03s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.01s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.04s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.03s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.01s) +=== RUN TestRetryReadReqStallEmulated + integration_test.go:231: Integration tests skipped in short mode +--- SKIP: TestRetryReadReqStallEmulated (0.00s) +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero +=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated + client_test.go:1807: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.43s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.43s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.11s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.13s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.18s) +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero +=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated + client_test.go:1807: transport "grpc" explicitly skipped: service is not implemented +--- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.41s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.41s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.12s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.16s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.13s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (31.66s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.27s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.72s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.13s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.72s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.15s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.05s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.78s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.14s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (2.65s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.92s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.06s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.82s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.03s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.45s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.09s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (2.85s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.97s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.18s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.17s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.06s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (3.44s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (2.82s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (2.56s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.17s) +PASS +ok cloud.google.com/go/storage 95.657s +go: inconsistent vendoring in /usr/local/google/home/tulsishah/fork-storage/google-cloud-go: + cloud.google.com/go/iam@v1.2.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + cloud.google.com/go/longrunning@v0.6.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + github.com/googleapis/gax-go/v2@v2.14.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + golang.org/x/oauth2@v0.24.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + golang.org/x/sync@v0.9.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + google.golang.org/api@v0.208.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + google.golang.org/genproto@v0.0.0-20241113202542-65e8d215514f: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + google.golang.org/genproto/googleapis/api@v0.0.0-20241104194629-dd2ea8efbc28: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + google.golang.org/protobuf@v1.35.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + cloud.google.com/go/monitoring@v1.21.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + golang.org/x/crypto@v0.29.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + golang.org/x/net@v0.31.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + golang.org/x/text@v0.20.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + golang.org/x/time@v0.8.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + google.golang.org/genproto/googleapis/rpc@v0.0.0-20241113202542-65e8d215514f: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt + + To ignore the vendor directory, use -mod=readonly or -mod=mod. + To sync the vendor directory, run: + go work vendor +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.01s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.00s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/grpc +=== RUN TestDeleteBucketEmulated/http +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.00s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== RUN TestGetServiceAccountEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- PASS: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) + --- SKIP: TestGetServiceAccountEmulated/grpc (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.00s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.03s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.02s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.00s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.02s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/grpc +=== RUN TestListObjectsWithPrefixEmulated/http +--- PASS: TestListObjectsWithPrefixEmulated (0.02s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.01s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/http +=== RUN TestDeleteBucketACLEmulated/grpc +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/http +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/http +=== RUN TestObjectACLCRUDEmulated/grpc +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== RUN TestListNotificationsEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented +--- PASS: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) + --- SKIP: TestListNotificationsEmulated/grpc (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== RUN TestCreateNotificationEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented +--- PASS: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) + --- SKIP: TestCreateNotificationEmulated/grpc (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/http +=== RUN TestDeleteNotificationEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented +--- PASS: TestDeleteNotificationEmulated (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) + --- SKIP: TestDeleteNotificationEmulated/grpc (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: hmac not implemented +=== RUN TestHMACKeyCRUDEmulated/http +--- PASS: TestHMACKeyCRUDEmulated (0.00s) + --- SKIP: TestHMACKeyCRUDEmulated/grpc (0.00s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.02s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.07s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc (0.03s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/grpc +=== RUN TestRetryTimeoutEmulated/http +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/grpc +=== RUN TestRetryMaxAttemptsEmulated/http +--- PASS: TestRetryMaxAttemptsEmulated (0.05s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.03s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.01s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.02s) +=== RUN TestRetryReadStallEmulated +2024/11/21 16:21:16 stalled read-req (0xc000367a40) cancelled after 0.010000s +--- PASS: TestRetryReadStallEmulated (0.89s) +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: service is not implemented +--- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.16s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.16s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.16s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.01s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.00s) + --- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/grpc (0.00s) +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: service is not implemented +--- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.04s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.04s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.01s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (5.99s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.04s) + --- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/grpc (0.00s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (21.65s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.07s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.07s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (2.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.52s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.07s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.98s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.00s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.05s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.00s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.05s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.06s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.84s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.37s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (3.36s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.67s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.03s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.86s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.93s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.81s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) +PASS +ok cloud.google.com/go/storage 85.560s +=== RUN TestCreateBucketEmulated +=== RUN TestCreateBucketEmulated/http +=== RUN TestCreateBucketEmulated/grpc +--- PASS: TestCreateBucketEmulated (0.01s) + --- PASS: TestCreateBucketEmulated/http (0.00s) + --- PASS: TestCreateBucketEmulated/grpc (0.00s) +=== RUN TestDeleteBucketEmulated +=== RUN TestDeleteBucketEmulated/http +=== RUN TestDeleteBucketEmulated/grpc +--- PASS: TestDeleteBucketEmulated (0.00s) + --- PASS: TestDeleteBucketEmulated/http (0.00s) + --- PASS: TestDeleteBucketEmulated/grpc (0.00s) +=== RUN TestGetBucketEmulated +=== RUN TestGetBucketEmulated/http +=== RUN TestGetBucketEmulated/grpc +--- PASS: TestGetBucketEmulated (0.00s) + --- PASS: TestGetBucketEmulated/http (0.00s) + --- PASS: TestGetBucketEmulated/grpc (0.00s) +=== RUN TestUpdateBucketEmulated +=== RUN TestUpdateBucketEmulated/http +=== RUN TestUpdateBucketEmulated/grpc +--- PASS: TestUpdateBucketEmulated (0.01s) + --- PASS: TestUpdateBucketEmulated/http (0.00s) + --- PASS: TestUpdateBucketEmulated/grpc (0.00s) +=== RUN TestGetServiceAccountEmulated +=== RUN TestGetServiceAccountEmulated/http +=== RUN TestGetServiceAccountEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: serviceaccount is not implemented +--- PASS: TestGetServiceAccountEmulated (0.00s) + --- PASS: TestGetServiceAccountEmulated/http (0.00s) + --- SKIP: TestGetServiceAccountEmulated/grpc (0.00s) +=== RUN TestGetSetTestIamPolicyEmulated +=== RUN TestGetSetTestIamPolicyEmulated/http +=== RUN TestGetSetTestIamPolicyEmulated/grpc +--- PASS: TestGetSetTestIamPolicyEmulated (0.01s) + --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) + --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) +=== RUN TestDeleteObjectEmulated +=== RUN TestDeleteObjectEmulated/http +=== RUN TestDeleteObjectEmulated/grpc +--- PASS: TestDeleteObjectEmulated (0.01s) + --- PASS: TestDeleteObjectEmulated/http (0.01s) + --- PASS: TestDeleteObjectEmulated/grpc (0.00s) +=== RUN TestGetObjectEmulated +=== RUN TestGetObjectEmulated/http +=== RUN TestGetObjectEmulated/grpc +--- PASS: TestGetObjectEmulated (0.01s) + --- PASS: TestGetObjectEmulated/http (0.01s) + --- PASS: TestGetObjectEmulated/grpc (0.01s) +=== RUN TestRewriteObjectEmulated +=== RUN TestRewriteObjectEmulated/http +=== RUN TestRewriteObjectEmulated/grpc +--- PASS: TestRewriteObjectEmulated (0.03s) + --- PASS: TestRewriteObjectEmulated/http (0.01s) + --- PASS: TestRewriteObjectEmulated/grpc (0.02s) +=== RUN TestUpdateObjectEmulated +=== RUN TestUpdateObjectEmulated/http +=== RUN TestUpdateObjectEmulated/grpc +--- PASS: TestUpdateObjectEmulated (0.01s) + --- PASS: TestUpdateObjectEmulated/http (0.01s) + --- PASS: TestUpdateObjectEmulated/grpc (0.01s) +=== RUN TestListObjectsEmulated +=== RUN TestListObjectsEmulated/http +=== RUN TestListObjectsEmulated/grpc +--- PASS: TestListObjectsEmulated (0.02s) + --- PASS: TestListObjectsEmulated/http (0.01s) + --- PASS: TestListObjectsEmulated/grpc (0.01s) +=== RUN TestListObjectsWithPrefixEmulated +=== RUN TestListObjectsWithPrefixEmulated/grpc +=== RUN TestListObjectsWithPrefixEmulated/http +--- PASS: TestListObjectsWithPrefixEmulated (0.02s) + --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) + --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) +=== RUN TestListBucketsEmulated +=== RUN TestListBucketsEmulated/http +=== RUN TestListBucketsEmulated/grpc +--- PASS: TestListBucketsEmulated (0.01s) + --- PASS: TestListBucketsEmulated/http (0.00s) + --- PASS: TestListBucketsEmulated/grpc (0.00s) +=== RUN TestListBucketACLsEmulated +=== RUN TestListBucketACLsEmulated/http +=== RUN TestListBucketACLsEmulated/grpc +--- PASS: TestListBucketACLsEmulated (0.00s) + --- PASS: TestListBucketACLsEmulated/http (0.00s) + --- PASS: TestListBucketACLsEmulated/grpc (0.00s) +=== RUN TestUpdateBucketACLEmulated +=== RUN TestUpdateBucketACLEmulated/http +=== RUN TestUpdateBucketACLEmulated/grpc +--- PASS: TestUpdateBucketACLEmulated (0.01s) + --- PASS: TestUpdateBucketACLEmulated/http (0.00s) + --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) +=== RUN TestDeleteBucketACLEmulated +=== RUN TestDeleteBucketACLEmulated/grpc +=== RUN TestDeleteBucketACLEmulated/http +--- PASS: TestDeleteBucketACLEmulated (0.01s) + --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) + --- PASS: TestDeleteBucketACLEmulated/http (0.00s) +=== RUN TestDefaultObjectACLCRUDEmulated +=== RUN TestDefaultObjectACLCRUDEmulated/grpc +=== RUN TestDefaultObjectACLCRUDEmulated/http +--- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) + --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) +=== RUN TestObjectACLCRUDEmulated +=== RUN TestObjectACLCRUDEmulated/grpc +=== RUN TestObjectACLCRUDEmulated/http +--- PASS: TestObjectACLCRUDEmulated (0.02s) + --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) + --- PASS: TestObjectACLCRUDEmulated/http (0.01s) +=== RUN TestOpenReaderEmulated +=== RUN TestOpenReaderEmulated/http +=== RUN TestOpenReaderEmulated/grpc +--- PASS: TestOpenReaderEmulated (0.01s) + --- PASS: TestOpenReaderEmulated/http (0.01s) + --- PASS: TestOpenReaderEmulated/grpc (0.01s) +=== RUN TestOpenWriterEmulated +=== RUN TestOpenWriterEmulated/http +=== RUN TestOpenWriterEmulated/grpc +--- PASS: TestOpenWriterEmulated (0.01s) + --- PASS: TestOpenWriterEmulated/http (0.00s) + --- PASS: TestOpenWriterEmulated/grpc (0.00s) +=== RUN TestListNotificationsEmulated +=== RUN TestListNotificationsEmulated/http +=== RUN TestListNotificationsEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented +--- PASS: TestListNotificationsEmulated (0.00s) + --- PASS: TestListNotificationsEmulated/http (0.00s) + --- SKIP: TestListNotificationsEmulated/grpc (0.00s) +=== RUN TestCreateNotificationEmulated +=== RUN TestCreateNotificationEmulated/http +=== RUN TestCreateNotificationEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented +--- PASS: TestCreateNotificationEmulated (0.00s) + --- PASS: TestCreateNotificationEmulated/http (0.00s) + --- SKIP: TestCreateNotificationEmulated/grpc (0.00s) +=== RUN TestDeleteNotificationEmulated +=== RUN TestDeleteNotificationEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented +=== RUN TestDeleteNotificationEmulated/http +--- PASS: TestDeleteNotificationEmulated (0.00s) + --- SKIP: TestDeleteNotificationEmulated/grpc (0.00s) + --- PASS: TestDeleteNotificationEmulated/http (0.00s) +=== RUN TestLockBucketRetentionPolicyEmulated +=== RUN TestLockBucketRetentionPolicyEmulated/http +=== RUN TestLockBucketRetentionPolicyEmulated/grpc +--- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) + --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) + --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) +=== RUN TestComposeEmulated +=== RUN TestComposeEmulated/http +=== RUN TestComposeEmulated/grpc +--- PASS: TestComposeEmulated (0.02s) + --- PASS: TestComposeEmulated/http (0.01s) + --- PASS: TestComposeEmulated/grpc (0.01s) +=== RUN TestHMACKeyCRUDEmulated +=== RUN TestHMACKeyCRUDEmulated/http +=== RUN TestHMACKeyCRUDEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: hmac not implemented +--- PASS: TestHMACKeyCRUDEmulated (0.00s) + --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) + --- SKIP: TestHMACKeyCRUDEmulated/grpc (0.00s) +=== RUN TestBucketConditionsEmulated +=== RUN TestBucketConditionsEmulated/http +=== RUN TestBucketConditionsEmulated/http/get +=== RUN TestBucketConditionsEmulated/http/update +=== RUN TestBucketConditionsEmulated/http/delete +=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy +=== RUN TestBucketConditionsEmulated/grpc +=== RUN TestBucketConditionsEmulated/grpc/get +=== RUN TestBucketConditionsEmulated/grpc/update +=== RUN TestBucketConditionsEmulated/grpc/delete +=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy +--- PASS: TestBucketConditionsEmulated (0.02s) + --- PASS: TestBucketConditionsEmulated/http (0.01s) + --- PASS: TestBucketConditionsEmulated/http/get (0.00s) + --- PASS: TestBucketConditionsEmulated/http/update (0.00s) + --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc (0.01s) + --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) + --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) +=== RUN TestObjectConditionsEmulated +=== RUN TestObjectConditionsEmulated/grpc +=== RUN TestObjectConditionsEmulated/grpc/update_generation +=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http +=== RUN TestObjectConditionsEmulated/http/update_generation +=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch +=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch +=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch +--- PASS: TestObjectConditionsEmulated (0.07s) + --- PASS: TestObjectConditionsEmulated/grpc (0.03s) + --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http (0.04s) + --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) + --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) + --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) + --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.00s) +=== RUN TestRetryNeverEmulated +=== RUN TestRetryNeverEmulated/http +=== RUN TestRetryNeverEmulated/grpc +--- PASS: TestRetryNeverEmulated (0.01s) + --- PASS: TestRetryNeverEmulated/http (0.00s) + --- PASS: TestRetryNeverEmulated/grpc (0.00s) +=== RUN TestRetryTimeoutEmulated +=== RUN TestRetryTimeoutEmulated/http +=== RUN TestRetryTimeoutEmulated/grpc +--- PASS: TestRetryTimeoutEmulated (0.21s) + --- PASS: TestRetryTimeoutEmulated/http (0.10s) + --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) +=== RUN TestRetryMaxAttemptsEmulated +=== RUN TestRetryMaxAttemptsEmulated/http +=== RUN TestRetryMaxAttemptsEmulated/grpc +--- PASS: TestRetryMaxAttemptsEmulated (0.03s) + --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) + --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) +=== RUN TestTimeoutErrorEmulated +=== RUN TestTimeoutErrorEmulated/http +=== RUN TestTimeoutErrorEmulated/grpc +--- PASS: TestTimeoutErrorEmulated (0.00s) + --- PASS: TestTimeoutErrorEmulated/http (0.00s) + --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) +=== RUN TestRetryDeadlineExceedeEmulated +=== RUN TestRetryDeadlineExceedeEmulated/http +=== RUN TestRetryDeadlineExceedeEmulated/grpc +--- PASS: TestRetryDeadlineExceedeEmulated (0.04s) + --- PASS: TestRetryDeadlineExceedeEmulated/http (0.03s) + --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.01s) +=== RUN TestRetryReadStallEmulated +2024/11/25 05:09:24 stalled read-req (0xc00242e280) cancelled after 0.010000s +--- PASS: TestRetryReadStallEmulated (0.64s) +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero +=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: service is not implemented +--- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (15.03s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (15.03s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (5.00s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (5.00s) + --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (5.03s) + --- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/grpc (0.00s) +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero +=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/grpc + client_test.go:1809: transport "grpc" explicitly skipped: service is not implemented +--- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (12.41s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (12.41s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (4.11s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (4.09s) + --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (4.21s) + --- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/grpc (0.00s) +=== RUN TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 +=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get + retry_conformance_test.go:617: No tests for operation storage.object_acl.insert +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.patch +=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.buckets.update + retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.notifications.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.object_acl.get +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 + retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.copy +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 +=== NAME TestRetryConformance + retry_conformance_test.go:617: No tests for operation storage.objects.update +=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 +=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 + retry_conformance_test.go:625: not supported +=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 +=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 +=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 +--- PASS: TestRetryConformance (18.78s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.04s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.05s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.07s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.08s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.07s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.07s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.07s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.04s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) + --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (2.06s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.41s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.06s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.04s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.26s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) + --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.06s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.03s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.00s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.04s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.08s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.05s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) + --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) + --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) + --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.85s) + --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.06s) + --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.22s) + --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.47s) + --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.07s) + --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.14s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.14s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.83s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.80s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.14s) + --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.77s) + --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.14s) +PASS +ok cloud.google.com/go/storage 47.681s diff --git a/storage/writer.go b/storage/writer.go index 746fc7481e13..c0fc2ec2398e 100644 --- a/storage/writer.go +++ b/storage/writer.go @@ -88,14 +88,14 @@ type Writer struct { // cancellation. ChunkRetryDeadline time.Duration - // ChunkTransferTimeOut sets a per-chunk retry transfer timeout for multi-chunk - // resumable uploads. + // ChunkTransferTimeout sets a per-chunk request timeout for resumable uploads. // - // For uploads of larger files, the Writer will attempt to retry if the - // request to upload a particular chunk stalls for some time. - // If a single chunk has been attempting to upload for longer than this - // timeout, then it will be retried. The default value no timeout. - ChunkTransferTimeOut time.Duration + // For resumable uploads, the Writer will terminate the request and attempt a retry + // if the request to upload a particular chunk stalls for longer than this duration. Retries + // may continue until the ChunkRetryDeadline is reached. + // + // The default value is no timeout. + ChunkTransferTimeout time.Duration // ForceEmptyContentType is an optional parameter that is used to disable // auto-detection of Content-Type. By default, if a blank Content-Type @@ -197,7 +197,7 @@ func (w *Writer) openWriter() (err error) { ctx: w.ctx, chunkSize: w.ChunkSize, chunkRetryDeadline: w.ChunkRetryDeadline, - chunkTransferTimeout: w.ChunkTransferTimeOut, + chunkTransferTimeout: w.ChunkTransferTimeout, bucket: w.o.bucket, attrs: &w.ObjectAttrs, conds: w.o.conds, From 45f71122a322e9e82ab3e21d68361a6bec9e813e Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Mon, 25 Nov 2024 05:14:45 +0000 Subject: [PATCH 14/21] remove log file --- storage/sponge_log.log | 22980 --------------------------------------- 1 file changed, 22980 deletions(-) delete mode 100644 storage/sponge_log.log diff --git a/storage/sponge_log.log b/storage/sponge_log.log deleted file mode 100644 index 7c7571bf6ab4..000000000000 --- a/storage/sponge_log.log +++ /dev/null @@ -1,22980 +0,0 @@ -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.84s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.83s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/grpc -=== RUN TestGetBucketEmulated/http ---- PASS: TestGetBucketEmulated (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) - --- PASS: TestGetBucketEmulated/http (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1641: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.00s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.02s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.02s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.00s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/grpc -=== RUN TestListObjectsEmulated/http ---- PASS: TestListObjectsEmulated (0.02s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) - --- PASS: TestListObjectsEmulated/http (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.02s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.00s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/grpc -=== RUN TestDefaultObjectACLCRUDEmulated/http ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.00s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.00s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/grpc -=== RUN TestOpenWriterEmulated/http ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) - --- PASS: TestOpenWriterEmulated/http (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1641: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1641: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated - client_test.go:1641: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated - client_test.go:1641: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.07s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/http -=== RUN TestRetryMaxAttemptsEmulated/grpc ---- PASS: TestRetryMaxAttemptsEmulated (0.05s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.04s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.02s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryWriteReqStallEmulated (0.00s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (25.44s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.05s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.07s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (0.72s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (2.05s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.27s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.05s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.76s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.75s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.83s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.06s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.47s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.47s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.41s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.14s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (2.26s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (2.38s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (2.03s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) -PASS -ok cloud.google.com/go/storage 27.085s -=== RUN TestRetryWriteReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryWriteReqStallEmulated (0.00s) -PASS -ok cloud.google.com/go/storage 0.173s -=== RUN TestRetryWriteReqStallEmulated ---- FAIL: TestRetryWriteReqStallEmulated (0.00s) -panic: runtime error: invalid memory address or nil pointer dereference [recovered] - panic: runtime error: invalid memory address or nil pointer dereference -[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0xae3b2a] - -goroutine 86 [running]: -testing.tRunner.func1.2({0x1370520, 0x2412210}) - /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/testing/testing.go:1632 +0x230 -testing.tRunner.func1() - /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/testing/testing.go:1635 +0x35e -panic({0x1370520?, 0x2412210?}) - /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/runtime/panic.go:785 +0x132 -google.golang.org/api/transport/http.newSettings({0xc0005b2500, 0x5, 0xc000581c01?}) - /usr/local/google/home/tulsishah/go/pkg/mod/google.golang.org/api@v0.199.0/transport/http/dial.go:202 +0x4a -google.golang.org/api/transport/http.NewClient({0x181bf30, 0xc0002e0180}, {0xc0005b2500?, 0x3?, 0x13883e0?}) - /usr/local/google/home/tulsishah/go/pkg/mod/google.golang.org/api@v0.199.0/transport/http/dial.go:37 +0x32 -cloud.google.com/go/storage.NewClient({0x181bf30, 0xc0002e0180}, {0xc00062af30, 0x1, 0xc0001b0dd0?}) - /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/storage.go:185 +0x60a -cloud.google.com/go/storage.testConfig({0x181bf30?, 0xc0002e0180?}, 0xc0002e41a0, {0xc00062af30?, 0x13883e0?, 0xc000581c08?}) - /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/integration_test.go:233 +0xd7 -cloud.google.com/go/storage.initTransportClients({0x181bf30, 0xc0002e0180}, 0xc0002e41a0, {0xc00062af30, 0x1, 0x1}) - /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/integration_test.go:262 +0x127 -cloud.google.com/go/storage.multiTransportTest({0x181bf30, 0xc0002e0180}, 0xc0002e41a0, 0x16aedd0, {0xc00062af30, 0x1, 0x1}) - /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/integration_test.go:277 +0xaf -cloud.google.com/go/storage.TestRetryWriteReqStallEmulated(0xc0002e41a0) - /usr/local/google/home/tulsishah/fork-storage/google-cloud-go/storage/client_test.go:1514 +0x99 -testing.tRunner(0xc0002e41a0, 0x16ae5c8) - /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/testing/testing.go:1690 +0xf4 -created by testing.(*T).Run in goroutine 1 - /usr/local/google/home/tulsishah/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.23.0.linux-amd64/src/testing/testing.go:1743 +0x390 -FAIL cloud.google.com/go/storage 0.181s -FAIL -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/grpc - client_test.go:1514: creating bucket: rpc error: code = Unknown desc = Exception calling application: [Errno 5] Input/output error -=== RUN TestRetryWriteReqStallEmulated/http ---- FAIL: TestRetryWriteReqStallEmulated (1.11s) - --- FAIL: TestRetryWriteReqStallEmulated/grpc (1.10s) - --- PASS: TestRetryWriteReqStallEmulated/http (0.01s) -FAIL -FAIL cloud.google.com/go/storage 1.285s -FAIL -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== RUN TestRetryWriteReqStallEmulated/grpc ---- PASS: TestRetryWriteReqStallEmulated (0.80s) - --- PASS: TestRetryWriteReqStallEmulated/http (0.01s) - --- PASS: TestRetryWriteReqStallEmulated/grpc (0.79s) -PASS -ok cloud.google.com/go/storage 0.976s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http - client_test.go:1576: checking written content: got(-),want(+): -   bytes.Join({ - -  "AAAAAA", - +  "abcdef", -   }, "") -=== RUN TestRetryWriteReqStallEmulated/grpc - client_test.go:1576: checking written content: got(-),want(+): -   bytes.Join({ - -  "AAAAAA", - +  "abcdef", -   }, "") ---- FAIL: TestRetryWriteReqStallEmulated (2.44s) - --- FAIL: TestRetryWriteReqStallEmulated/http (0.17s) - --- FAIL: TestRetryWriteReqStallEmulated/grpc (2.27s) -FAIL -FAIL cloud.google.com/go/storage 2.610s -FAIL -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/grpc -=== RUN TestRetryWriteReqStallEmulated/http ---- PASS: TestRetryWriteReqStallEmulated (56.63s) - --- PASS: TestRetryWriteReqStallEmulated/grpc (29.15s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.48s) -PASS -ok cloud.google.com/go/storage 56.812s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/grpc - client_test.go:1514: creating bucket: rpc error: code = Unknown desc = Exception calling application: [Errno 5] Input/output error -=== RUN TestRetryWriteReqStallEmulated/http ---- FAIL: TestRetryWriteReqStallEmulated (30.84s) - --- FAIL: TestRetryWriteReqStallEmulated/grpc (2.99s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.85s) -FAIL -FAIL cloud.google.com/go/storage 31.021s -FAIL -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== RUN TestRetryWriteReqStallEmulated/grpc - client_test.go:1514: creating bucket: rpc error: code = Unknown desc = Exception calling application: [Errno 5] Input/output error ---- FAIL: TestRetryWriteReqStallEmulated (27.99s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.66s) - --- FAIL: TestRetryWriteReqStallEmulated/grpc (0.33s) -FAIL -FAIL cloud.google.com/go/storage 28.168s -FAIL -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1660: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.60s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.60s) -PASS -ok cloud.google.com/go/storage 27.773s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1660: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.74s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.74s) -PASS -ok cloud.google.com/go/storage 27.919s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1660: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.80s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.80s) -PASS -ok cloud.google.com/go/storage 27.976s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.68s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.68s) -PASS -ok cloud.google.com/go/storage 27.860s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.68s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.68s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http - retry_conformance_test.go:780: creating retry test: err: , resp: &{Status:400 BAD REQUEST StatusCode:400 Proto:HTTP/1.1 ProtoMajor:1 ProtoMinor:1 Header:map[Connection:[keep-alive] Content-Length:[170] Content-Type:[application/json] Date:[Mon, 18 Nov 2024 09:39:43 GMT] Server:[gunicorn]] Body:0xc000398300 ContentLength:170 TransferEncoding:[] Close:false Uncompressed:false Trailer:map[] Request:0xc0001c5400 TLS:} -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- FAIL: TestRetryWriteReqStallEmulated (0.00s) - --- FAIL: TestRetryWriteReqStallEmulated/http (0.00s) -FAIL -FAIL cloud.google.com/go/storage 0.178s -FAIL -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.68s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.68s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.64s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) -PASS -ok cloud.google.com/go/storage 27.818s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.64s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.67s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) -PASS -ok cloud.google.com/go/storage 27.849s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.67s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.67s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.67s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http - client_test.go:1563: write took 106.497805ms, want >= 40s -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- FAIL: TestRetryWriteReqStallEmulated (27.80s) - --- FAIL: TestRetryWriteReqStallEmulated/http (27.80s) -FAIL -FAIL cloud.google.com/go/storage 27.981s -FAIL -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.67s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.67s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.64s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.59s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.59s) -PASS -ok cloud.google.com/go/storage 27.766s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.64s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.64s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.64s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.78s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.78s) -PASS -ok cloud.google.com/go/storage 27.962s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (27.78s) - --- PASS: TestRetryWriteReqStallEmulated/http (27.78s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (60.99s) - --- PASS: TestRetryWriteReqStallEmulated/http (60.99s) -PASS -ok cloud.google.com/go/storage 61.162s -=== RUN TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (0.00s) -PASS -ok cloud.google.com/go/storage 0.173s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1661: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (6.14s) - --- PASS: TestRetryWriteReqStallEmulated/http (6.14s) -PASS -ok cloud.google.com/go/storage 6.312s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (6.08s) - --- PASS: TestRetryWriteReqStallEmulated/http (6.08s) -PASS -ok cloud.google.com/go/storage 6.256s -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http -=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated - client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (8.09s) - --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (8.09s) -PASS -ok cloud.google.com/go/storage 8.264s -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated - client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (0.00s) -PASS -ok cloud.google.com/go/storage 0.172s -=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated -=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http -=== NAME TestRetryWriteReqStallTwiceOnSecondChunkEmulated - client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (8.13s) - --- PASS: TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http (8.13s) -PASS -ok cloud.google.com/go/storage 8.302s -=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated -=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http -=== NAME TestRetryWriteReqStallTwiceOnSecondChunkEmulated - client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (8.13s) - --- PASS: TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http (8.13s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated -=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http -=== NAME TestRetryWriteReqStallTwiceOnSecondChunkEmulated - client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (8.13s) - --- PASS: TestRetryWriteReqStallTwiceOnSecondChunkEmulated/http (8.13s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated - client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (0.00s) -PASS -ok cloud.google.com/go/storage 0.174s -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http -=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated - client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (8.13s) - --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (8.13s) -PASS -ok cloud.google.com/go/storage 8.311s -=== RUN TestRetryWriteReqStallTwiceOnSecondChunkEmulated - client_test.go:1805: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnSecondChunkEmulated (0.00s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http -=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated - client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (8.13s) - --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (8.13s) -PASS -ok cloud.google.com/go/storage 8.307s -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http -=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated - client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (14.09s) - --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (14.09s) -PASS -ok cloud.google.com/go/storage 14.259s -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http - client_test.go:1635: write took 10.021577719s, want >= 10s -=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated - client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented ---- FAIL: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (14.12s) - --- FAIL: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (14.12s) -FAIL -FAIL cloud.google.com/go/storage 14.302s -FAIL -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated -=== RUN TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http -=== NAME TestRetryWriteReqStallTwiceOnFirstChunkEmulated - client_test.go:1733: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallTwiceOnFirstChunkEmulated (8.15s) - --- PASS: TestRetryWriteReqStallTwiceOnFirstChunkEmulated/http (8.15s) -PASS -ok cloud.google.com/go/storage 8.325s -=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated - client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated (0.00s) -PASS -ok cloud.google.com/go/storage 0.175s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (6.12s) - --- PASS: TestRetryWriteReqStallEmulated/http (6.12s) -PASS -ok cloud.google.com/go/storage 6.296s -=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated - client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated (0.00s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated -=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated/http -=== NAME TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated - client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated (14.10s) - --- PASS: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated/http (14.10s) -PASS -ok cloud.google.com/go/storage 14.279s -=== RUN TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated - client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallShouldNotRetryInCaseTransferTimeoutZeroEmulated (0.00s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestRetryWriteReqStallEmulated2 -=== RUN TestRetryWriteReqStallEmulated2/http -=== NAME TestRetryWriteReqStallEmulated2 - client_test.go:1804: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated2 (14.11s) - --- PASS: TestRetryWriteReqStallEmulated2/http (14.11s) -PASS -ok cloud.google.com/go/storage 14.289s -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.62s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.62s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/grpc -=== RUN TestDeleteBucketEmulated/http ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/grpc -=== RUN TestGetBucketEmulated/http ---- PASS: TestGetBucketEmulated (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) - --- PASS: TestGetBucketEmulated/http (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/grpc -=== RUN TestUpdateBucketEmulated/http ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1876: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/grpc -=== RUN TestGetSetTestIamPolicyEmulated/http ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.00s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.01s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.00s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.02s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.02s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.00s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/grpc -=== RUN TestObjectACLCRUDEmulated/http ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== NAME TestDeleteNotificationEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated - client_test.go:1876: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.08s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/grpc -=== RUN TestRetryMaxAttemptsEmulated/http ---- PASS: TestRetryMaxAttemptsEmulated (0.05s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.03s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.05s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (21.05s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.07s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.06s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.06s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.08s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.90s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.05s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.66s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.05s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.53s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.08s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.52s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.85s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.15s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.40s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.03s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.88s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.82s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.78s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) -PASS -ok cloud.google.com/go/storage 22.503s -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.62s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.62s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/grpc -=== RUN TestDeleteBucketEmulated/http ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/grpc -=== RUN TestGetBucketEmulated/http ---- PASS: TestGetBucketEmulated (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) - --- PASS: TestGetBucketEmulated/http (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/grpc -=== RUN TestUpdateBucketEmulated/http ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1876: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/grpc -=== RUN TestGetSetTestIamPolicyEmulated/http ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.00s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.01s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.00s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.02s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.02s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.00s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/grpc -=== RUN TestObjectACLCRUDEmulated/http ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== NAME TestDeleteNotificationEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated - client_test.go:1876: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.08s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/grpc -=== RUN TestRetryMaxAttemptsEmulated/http ---- PASS: TestRetryMaxAttemptsEmulated (0.05s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.03s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.05s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (21.05s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.07s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.06s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.06s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.08s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.90s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.05s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.66s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.05s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.53s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.08s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.52s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.85s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.15s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.40s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.03s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.88s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.82s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.78s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/grpc -=== RUN TestCreateBucketEmulated/http ---- PASS: TestCreateBucketEmulated (0.38s) - --- PASS: TestCreateBucketEmulated/grpc (0.38s) - --- PASS: TestCreateBucketEmulated/http (0.00s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.01s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1876: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.01s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.02s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.01s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.03s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.03s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/grpc -=== RUN TestOpenWriterEmulated/http ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) - --- PASS: TestOpenWriterEmulated/http (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/http -=== NAME TestHMACKeyCRUDEmulated - client_test.go:1876: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.00s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.07s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/grpc -=== RUN TestRetryNeverEmulated/http ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) - --- PASS: TestRetryNeverEmulated/http (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.11s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/http -=== RUN TestRetryMaxAttemptsEmulated/grpc ---- PASS: TestRetryMaxAttemptsEmulated (0.06s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.04s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.01s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated - client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated (6.12s) - --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http (6.12s) -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated - client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated (14.10s) - --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http (14.10s) -=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated - client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated (8.12s) - --- PASS: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http (8.12s) -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated - client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.11s) - --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.11s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (21.63s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.21s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.24s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.06s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.25s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.05s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.26s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.05s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (0.84s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.62s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.06s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.52s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.00s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.06s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.32s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.73s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (3.24s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.37s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.48s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.40s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.80s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.76s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.17s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.78s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.16s) -PASS -ok cloud.google.com/go/storage 57.298s -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated - client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.10s) - --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.10s) -PASS -ok cloud.google.com/go/storage 6.269s -testing: warning: no tests to run -PASS -ok cloud.google.com/go/storage 0.173s [no tests to run] -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/grpc -=== RUN TestCreateBucketEmulated/http ---- PASS: TestCreateBucketEmulated (0.38s) - --- PASS: TestCreateBucketEmulated/grpc (0.38s) - --- PASS: TestCreateBucketEmulated/http (0.00s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.01s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1876: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.01s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.02s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.01s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.03s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.03s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/grpc -=== RUN TestOpenWriterEmulated/http ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) - --- PASS: TestOpenWriterEmulated/http (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated - client_test.go:1876: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/http -=== NAME TestHMACKeyCRUDEmulated - client_test.go:1876: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.00s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.07s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/grpc -=== RUN TestRetryNeverEmulated/http ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) - --- PASS: TestRetryNeverEmulated/http (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.11s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/http -=== RUN TestRetryMaxAttemptsEmulated/grpc ---- PASS: TestRetryMaxAttemptsEmulated (0.06s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.04s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.01s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated - client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated (6.12s) - --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http (6.12s) -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated - client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated (14.10s) - --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http (14.10s) -=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated - client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated (8.12s) - --- PASS: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http (8.12s) -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated - client_test.go:1876: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.11s) - --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.11s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (21.63s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.21s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.24s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.06s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.25s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.05s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.26s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.05s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (0.84s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.62s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.06s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.52s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.00s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.06s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.32s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.73s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (3.24s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.37s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.48s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.40s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.80s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.76s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.17s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.78s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.16s) -PASS -ok cloud.google.com/go/storage (cached) -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.57s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.57s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.01s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.00s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/grpc -=== RUN TestUpdateBucketEmulated/http ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1885: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.01s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.01s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.00s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.02s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.02s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.02s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/grpc -=== RUN TestDeleteBucketACLEmulated/http ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.00s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== NAME TestDeleteNotificationEmulated - client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/http -=== NAME TestHMACKeyCRUDEmulated - client_test.go:1885: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.00s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.08s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/grpc -=== RUN TestRetryMaxAttemptsEmulated/http ---- PASS: TestRetryMaxAttemptsEmulated (0.04s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/grpc -=== RUN TestTimeoutErrorEmulated/http ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.06s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.03s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated - client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated (6.14s) - --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http (6.14s) -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated - client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated (14.15s) - --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http (14.15s) -=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated - client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated (0.00s) -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated - client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.14s) - --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.14s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (20.71s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.39s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.07s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.40s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.09s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.05s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.43s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.08s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.55s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.97s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.07s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.30s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.67s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.63s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.09s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.65s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.64s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.38s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.14s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.76s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.78s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.76s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) -PASS -ok cloud.google.com/go/storage 48.555s -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.30s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.30s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.00s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1885: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/grpc -=== RUN TestGetObjectEmulated/http ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/grpc (0.00s) - --- PASS: TestGetObjectEmulated/http (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.01s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.01s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/grpc -=== RUN TestUpdateObjectEmulated/http ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.03s) - --- PASS: TestListObjectsEmulated/http (0.02s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.03s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.02s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.01s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/grpc -=== RUN TestObjectACLCRUDEmulated/http ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated - client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== NAME TestDeleteNotificationEmulated - client_test.go:1885: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/http -=== NAME TestHMACKeyCRUDEmulated - client_test.go:1885: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.01s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.01s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.08s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/http -=== RUN TestRetryMaxAttemptsEmulated/grpc ---- PASS: TestRetryMaxAttemptsEmulated (0.06s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.04s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.02s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated - client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated (6.11s) - --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutNonZeroEmulated/http (6.11s) -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated - client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated (14.10s) - --- PASS: TestRetryWriteReqStallOnFirstChunkWithTransferTimeoutZeroEmulated/http (14.10s) -=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated - client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated (8.09s) - --- PASS: TestRetryWriteReqStallOnFirstChunkTwiceWithTransferTimeoutNonZeroEmulated/http (8.09s) -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated -=== RUN TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http -=== NAME TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated - client_test.go:1885: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated (6.09s) - --- PASS: TestRetryWriteReqStallOnSecondChunkWithTransferTimeoutNonZeroEmulated/http (6.09s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (23.75s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.08s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.55s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.10s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.59s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.11s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.59s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.11s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.74s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (2.71s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.90s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.18s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (2.22s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.06s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.96s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.47s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.84s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.83s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.82s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.18s) -PASS -ok cloud.google.com/go/storage 59.324s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== RUN TestRetryWriteReqStallEmulated/http/stall-on-second-chunk-with-transfer-timeout-nonzero-emulated -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1991: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (6.10s) - --- PASS: TestRetryWriteReqStallEmulated/http (6.10s) - --- PASS: TestRetryWriteReqStallEmulated/http/stall-on-second-chunk-with-transfer-timeout-nonzero-emulated (6.09s) -PASS -ok cloud.google.com/go/storage 6.272s -=== RUN TestRetryWriteReqStallEmulated -=== RUN TestRetryWriteReqStallEmulated/http -=== RUN TestRetryWriteReqStallEmulated/http/stall-on-first-chunk-with-transfer-timeout-nonzero-emulated -=== RUN TestRetryWriteReqStallEmulated/http/stall-on-second-chunk-with-transfer-timeout-nonzero-emulated -=== RUN TestRetryWriteReqStallEmulated/http/stall-on-first-chunk-twice-with-transfer-timeout-nonzero-emulated -=== NAME TestRetryWriteReqStallEmulated - client_test.go:1785: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallEmulated (20.37s) - --- PASS: TestRetryWriteReqStallEmulated/http (20.37s) - --- PASS: TestRetryWriteReqStallEmulated/http/stall-on-first-chunk-with-transfer-timeout-nonzero-emulated (6.13s) - --- PASS: TestRetryWriteReqStallEmulated/http/stall-on-second-chunk-with-transfer-timeout-nonzero-emulated (6.12s) - --- PASS: TestRetryWriteReqStallEmulated/http/stall-on-first-chunk-twice-with-transfer-timeout-nonzero-emulated (8.12s) -PASS -ok cloud.google.com/go/storage 20.548s -testing: warning: no tests to run -PASS -ok cloud.google.com/go/storage 0.174s [no tests to run] -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.33s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.33s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.00s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1837: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.00s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.01s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.01s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.00s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.03s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.02s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/grpc -=== RUN TestUpdateBucketACLEmulated/http ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/grpc -=== RUN TestDefaultObjectACLCRUDEmulated/http ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.00s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.00s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1837: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1837: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== NAME TestDeleteNotificationEmulated - client_test.go:1837: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/http -=== NAME TestHMACKeyCRUDEmulated - client_test.go:1837: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.00s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.07s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.03s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.11s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/http -=== RUN TestRetryMaxAttemptsEmulated/grpc ---- PASS: TestRetryMaxAttemptsEmulated (0.04s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/grpc -=== RUN TestRetryDeadlineExceedeEmulated/http ---- PASS: TestRetryDeadlineExceedeEmulated (0.04s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.02s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero -=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated - client_test.go:1837: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.48s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.48s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.11s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.07s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.29s) -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero -=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated - client_test.go:1837: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.27s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.27s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.09s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.08s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.10s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (23.66s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.30s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.05s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.07s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.06s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.07s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.40s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.06s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (2.48s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.08s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.23s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.70s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.13s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.09s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (3.13s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.95s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.18s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.05s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.20s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.05s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.18s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.80s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.78s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.77s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) -PASS -ok cloud.google.com/go/storage 87.556s -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/grpc -=== RUN TestCreateBucketEmulated/http ---- PASS: TestCreateBucketEmulated (0.26s) - --- PASS: TestCreateBucketEmulated/grpc (0.26s) - --- PASS: TestCreateBucketEmulated/http (0.00s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.01s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1819: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/grpc -=== RUN TestGetSetTestIamPolicyEmulated/http ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/grpc -=== RUN TestDeleteObjectEmulated/http ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.01s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.02s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.01s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.02s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/grpc -=== RUN TestListObjectsEmulated/http ---- PASS: TestListObjectsEmulated (0.03s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) - --- PASS: TestListObjectsEmulated/http (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.02s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/grpc -=== RUN TestOpenWriterEmulated/http ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) - --- PASS: TestOpenWriterEmulated/http (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== NAME TestDeleteNotificationEmulated - client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated - client_test.go:1819: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.08s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/http -=== RUN TestRetryMaxAttemptsEmulated/grpc ---- PASS: TestRetryMaxAttemptsEmulated (0.04s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.04s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.01s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero -=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated - client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.57s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.57s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.13s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.17s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.27s) -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero -=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated - client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.41s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.41s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.17s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.12s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.11s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (22.33s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.30s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.09s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.22s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.23s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.05s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.05s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.25s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.05s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (0.97s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.05s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.07s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.07s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.37s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.09s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.84s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.65s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (2.31s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.29s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.44s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.38s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.74s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.74s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.77s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) -PASS -ok cloud.google.com/go/storage 86.391s -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/grpc -=== RUN TestCreateBucketEmulated/http ---- PASS: TestCreateBucketEmulated (0.30s) - --- PASS: TestCreateBucketEmulated/grpc (0.30s) - --- PASS: TestCreateBucketEmulated/http (0.00s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.01s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.01s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1819: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.01s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.01s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.01s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.02s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.03s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/grpc -=== RUN TestListBucketACLsEmulated/http ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.00s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== NAME TestDeleteNotificationEmulated - client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/http -=== NAME TestHMACKeyCRUDEmulated - client_test.go:1819: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.01s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.01s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.09s) - --- PASS: TestObjectConditionsEmulated/http (0.05s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/grpc -=== RUN TestRetryTimeoutEmulated/http ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/http -=== RUN TestRetryMaxAttemptsEmulated/grpc ---- PASS: TestRetryMaxAttemptsEmulated (0.03s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.01s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.05s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.02s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero -=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated - client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.36s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.36s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.13s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.13s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.11s) -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero - client_test.go:1719: write took 2.019655025s, want <= 2s -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero - client_test.go:1719: write took 2.019473989s, want <= 2s -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero - client_test.go:1719: write took 4.022079738s, want <= 2s -=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated - client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented ---- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.47s) - --- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.47s) - --- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.12s) - --- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.13s) - --- FAIL: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.22s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (29.77s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.27s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.40s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.08s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.05s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.40s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.09s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.06s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.05s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.43s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.08s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.94s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.06s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.81s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.05s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.84s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.58s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.09s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.68s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.88s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.45s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (3.11s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (3.14s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (3.16s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) -FAIL -FAIL cloud.google.com/go/storage 93.742s -FAIL -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.29s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.29s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.01s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.01s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1819: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/grpc -=== RUN TestGetSetTestIamPolicyEmulated/http ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.01s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.01s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.01s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.03s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.03s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.02s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.01s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.01s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.02s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.02s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== NAME TestDeleteNotificationEmulated - client_test.go:1819: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/http -=== NAME TestHMACKeyCRUDEmulated - client_test.go:1819: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.01s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.01s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.02s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.01s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.02s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.09s) - --- PASS: TestObjectConditionsEmulated/http (0.05s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.05s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.02s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/grpc -=== RUN TestRetryTimeoutEmulated/http ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/grpc -=== RUN TestRetryMaxAttemptsEmulated/http ---- PASS: TestRetryMaxAttemptsEmulated (0.05s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.01s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.04s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.06s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.03s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.03s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero -=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated - client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.42s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.42s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.20s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.12s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.10s) -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero -=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated - client_test.go:1819: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.46s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.46s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.15s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.18s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.13s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (30.01s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.29s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.56s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.11s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.57s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.11s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.06s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.05s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.61s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.10s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.05s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (1.78s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.06s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.39s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.05s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.06s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.15s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.08s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (2.10s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.05s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.03s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.45s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.25s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.89s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.52s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.10s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.10s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.38s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.17s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (2.79s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (2.80s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (3.17s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) -PASS -ok cloud.google.com/go/storage 94.102s -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.30s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.30s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/grpc -=== RUN TestGetBucketEmulated/http ---- PASS: TestGetBucketEmulated (0.01s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) - --- PASS: TestGetBucketEmulated/http (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== NAME TestGetServiceAccountEmulated - client_test.go:1807: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- SKIP: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/grpc -=== RUN TestGetObjectEmulated/http ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/grpc (0.00s) - --- PASS: TestGetObjectEmulated/http (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.02s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.01s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/grpc -=== RUN TestUpdateObjectEmulated/http ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.03s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/http -=== RUN TestListObjectsWithPrefixEmulated/grpc ---- PASS: TestListObjectsWithPrefixEmulated (0.03s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.01s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== NAME TestListNotificationsEmulated - client_test.go:1807: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== NAME TestCreateNotificationEmulated - client_test.go:1807: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== NAME TestDeleteNotificationEmulated - client_test.go:1807: transport "grpc" explicitly skipped: notifications not implemented ---- SKIP: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/http -=== NAME TestHMACKeyCRUDEmulated - client_test.go:1807: transport "grpc" explicitly skipped: hmac not implemented ---- SKIP: TestHMACKeyCRUDEmulated (0.01s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.01s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.03s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.08s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.04s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/http -=== RUN TestRetryMaxAttemptsEmulated/grpc ---- PASS: TestRetryMaxAttemptsEmulated (0.04s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.03s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.01s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.04s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.03s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.01s) -=== RUN TestRetryReadReqStallEmulated - integration_test.go:231: Integration tests skipped in short mode ---- SKIP: TestRetryReadReqStallEmulated (0.00s) -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero -=== NAME TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated - client_test.go:1807: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.43s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.43s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.11s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.13s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.18s) -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero -=== NAME TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated - client_test.go:1807: transport "grpc" explicitly skipped: service is not implemented ---- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.41s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.41s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.12s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (6.16s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.13s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (31.66s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.27s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.72s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.13s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.72s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.15s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.05s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.78s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.14s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (2.65s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.92s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.06s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.82s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.04s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.03s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.45s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.09s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (2.85s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.97s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.18s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.17s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.06s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (3.44s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (2.82s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (2.56s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.17s) -PASS -ok cloud.google.com/go/storage 95.657s -go: inconsistent vendoring in /usr/local/google/home/tulsishah/fork-storage/google-cloud-go: - cloud.google.com/go/iam@v1.2.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - cloud.google.com/go/longrunning@v0.6.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - github.com/googleapis/gax-go/v2@v2.14.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - golang.org/x/oauth2@v0.24.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - golang.org/x/sync@v0.9.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - google.golang.org/api@v0.208.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - google.golang.org/genproto@v0.0.0-20241113202542-65e8d215514f: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - google.golang.org/genproto/googleapis/api@v0.0.0-20241104194629-dd2ea8efbc28: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - google.golang.org/protobuf@v1.35.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - cloud.google.com/go/monitoring@v1.21.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - golang.org/x/crypto@v0.29.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - golang.org/x/net@v0.31.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - golang.org/x/text@v0.20.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - golang.org/x/time@v0.8.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - google.golang.org/genproto/googleapis/rpc@v0.0.0-20241113202542-65e8d215514f: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt - - To ignore the vendor directory, use -mod=readonly or -mod=mod. - To sync the vendor directory, run: - go work vendor -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.01s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.00s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/grpc -=== RUN TestDeleteBucketEmulated/http ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.00s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== RUN TestGetServiceAccountEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- PASS: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) - --- SKIP: TestGetServiceAccountEmulated/grpc (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.00s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.03s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.02s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.00s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.02s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/grpc -=== RUN TestListObjectsWithPrefixEmulated/http ---- PASS: TestListObjectsWithPrefixEmulated (0.02s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.01s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/http -=== RUN TestDeleteBucketACLEmulated/grpc ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/http -=== RUN TestDefaultObjectACLCRUDEmulated/grpc ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/http -=== RUN TestObjectACLCRUDEmulated/grpc ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== RUN TestListNotificationsEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented ---- PASS: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) - --- SKIP: TestListNotificationsEmulated/grpc (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== RUN TestCreateNotificationEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented ---- PASS: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) - --- SKIP: TestCreateNotificationEmulated/grpc (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/http -=== RUN TestDeleteNotificationEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented ---- PASS: TestDeleteNotificationEmulated (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) - --- SKIP: TestDeleteNotificationEmulated/grpc (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: hmac not implemented -=== RUN TestHMACKeyCRUDEmulated/http ---- PASS: TestHMACKeyCRUDEmulated (0.00s) - --- SKIP: TestHMACKeyCRUDEmulated/grpc (0.00s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.02s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.07s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc (0.03s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/grpc -=== RUN TestRetryTimeoutEmulated/http ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/grpc -=== RUN TestRetryMaxAttemptsEmulated/http ---- PASS: TestRetryMaxAttemptsEmulated (0.05s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.03s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.03s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.01s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.02s) -=== RUN TestRetryReadStallEmulated -2024/11/21 16:21:16 stalled read-req (0xc000367a40) cancelled after 0.010000s ---- PASS: TestRetryReadStallEmulated (0.89s) -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: service is not implemented ---- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (42.16s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (42.16s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (14.16s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (14.01s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (14.00s) - --- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/grpc (0.00s) -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: service is not implemented ---- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (20.04s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (20.04s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (6.01s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (5.99s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (8.04s) - --- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/grpc (0.00s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (21.65s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.07s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.07s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.14s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (2.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (1.52s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.07s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.98s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.00s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.05s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.00s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.05s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.06s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.84s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.37s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.08s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (3.36s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (0.67s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.46s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.09s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.03s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.16s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.86s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.93s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.81s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.15s) -PASS -ok cloud.google.com/go/storage 85.560s -=== RUN TestCreateBucketEmulated -=== RUN TestCreateBucketEmulated/http -=== RUN TestCreateBucketEmulated/grpc ---- PASS: TestCreateBucketEmulated (0.01s) - --- PASS: TestCreateBucketEmulated/http (0.00s) - --- PASS: TestCreateBucketEmulated/grpc (0.00s) -=== RUN TestDeleteBucketEmulated -=== RUN TestDeleteBucketEmulated/http -=== RUN TestDeleteBucketEmulated/grpc ---- PASS: TestDeleteBucketEmulated (0.00s) - --- PASS: TestDeleteBucketEmulated/http (0.00s) - --- PASS: TestDeleteBucketEmulated/grpc (0.00s) -=== RUN TestGetBucketEmulated -=== RUN TestGetBucketEmulated/http -=== RUN TestGetBucketEmulated/grpc ---- PASS: TestGetBucketEmulated (0.00s) - --- PASS: TestGetBucketEmulated/http (0.00s) - --- PASS: TestGetBucketEmulated/grpc (0.00s) -=== RUN TestUpdateBucketEmulated -=== RUN TestUpdateBucketEmulated/http -=== RUN TestUpdateBucketEmulated/grpc ---- PASS: TestUpdateBucketEmulated (0.01s) - --- PASS: TestUpdateBucketEmulated/http (0.00s) - --- PASS: TestUpdateBucketEmulated/grpc (0.00s) -=== RUN TestGetServiceAccountEmulated -=== RUN TestGetServiceAccountEmulated/http -=== RUN TestGetServiceAccountEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: serviceaccount is not implemented ---- PASS: TestGetServiceAccountEmulated (0.00s) - --- PASS: TestGetServiceAccountEmulated/http (0.00s) - --- SKIP: TestGetServiceAccountEmulated/grpc (0.00s) -=== RUN TestGetSetTestIamPolicyEmulated -=== RUN TestGetSetTestIamPolicyEmulated/http -=== RUN TestGetSetTestIamPolicyEmulated/grpc ---- PASS: TestGetSetTestIamPolicyEmulated (0.01s) - --- PASS: TestGetSetTestIamPolicyEmulated/http (0.00s) - --- PASS: TestGetSetTestIamPolicyEmulated/grpc (0.00s) -=== RUN TestDeleteObjectEmulated -=== RUN TestDeleteObjectEmulated/http -=== RUN TestDeleteObjectEmulated/grpc ---- PASS: TestDeleteObjectEmulated (0.01s) - --- PASS: TestDeleteObjectEmulated/http (0.01s) - --- PASS: TestDeleteObjectEmulated/grpc (0.00s) -=== RUN TestGetObjectEmulated -=== RUN TestGetObjectEmulated/http -=== RUN TestGetObjectEmulated/grpc ---- PASS: TestGetObjectEmulated (0.01s) - --- PASS: TestGetObjectEmulated/http (0.01s) - --- PASS: TestGetObjectEmulated/grpc (0.01s) -=== RUN TestRewriteObjectEmulated -=== RUN TestRewriteObjectEmulated/http -=== RUN TestRewriteObjectEmulated/grpc ---- PASS: TestRewriteObjectEmulated (0.03s) - --- PASS: TestRewriteObjectEmulated/http (0.01s) - --- PASS: TestRewriteObjectEmulated/grpc (0.02s) -=== RUN TestUpdateObjectEmulated -=== RUN TestUpdateObjectEmulated/http -=== RUN TestUpdateObjectEmulated/grpc ---- PASS: TestUpdateObjectEmulated (0.01s) - --- PASS: TestUpdateObjectEmulated/http (0.01s) - --- PASS: TestUpdateObjectEmulated/grpc (0.01s) -=== RUN TestListObjectsEmulated -=== RUN TestListObjectsEmulated/http -=== RUN TestListObjectsEmulated/grpc ---- PASS: TestListObjectsEmulated (0.02s) - --- PASS: TestListObjectsEmulated/http (0.01s) - --- PASS: TestListObjectsEmulated/grpc (0.01s) -=== RUN TestListObjectsWithPrefixEmulated -=== RUN TestListObjectsWithPrefixEmulated/grpc -=== RUN TestListObjectsWithPrefixEmulated/http ---- PASS: TestListObjectsWithPrefixEmulated (0.02s) - --- PASS: TestListObjectsWithPrefixEmulated/grpc (0.01s) - --- PASS: TestListObjectsWithPrefixEmulated/http (0.01s) -=== RUN TestListBucketsEmulated -=== RUN TestListBucketsEmulated/http -=== RUN TestListBucketsEmulated/grpc ---- PASS: TestListBucketsEmulated (0.01s) - --- PASS: TestListBucketsEmulated/http (0.00s) - --- PASS: TestListBucketsEmulated/grpc (0.00s) -=== RUN TestListBucketACLsEmulated -=== RUN TestListBucketACLsEmulated/http -=== RUN TestListBucketACLsEmulated/grpc ---- PASS: TestListBucketACLsEmulated (0.00s) - --- PASS: TestListBucketACLsEmulated/http (0.00s) - --- PASS: TestListBucketACLsEmulated/grpc (0.00s) -=== RUN TestUpdateBucketACLEmulated -=== RUN TestUpdateBucketACLEmulated/http -=== RUN TestUpdateBucketACLEmulated/grpc ---- PASS: TestUpdateBucketACLEmulated (0.01s) - --- PASS: TestUpdateBucketACLEmulated/http (0.00s) - --- PASS: TestUpdateBucketACLEmulated/grpc (0.00s) -=== RUN TestDeleteBucketACLEmulated -=== RUN TestDeleteBucketACLEmulated/grpc -=== RUN TestDeleteBucketACLEmulated/http ---- PASS: TestDeleteBucketACLEmulated (0.01s) - --- PASS: TestDeleteBucketACLEmulated/grpc (0.00s) - --- PASS: TestDeleteBucketACLEmulated/http (0.00s) -=== RUN TestDefaultObjectACLCRUDEmulated -=== RUN TestDefaultObjectACLCRUDEmulated/grpc -=== RUN TestDefaultObjectACLCRUDEmulated/http ---- PASS: TestDefaultObjectACLCRUDEmulated (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/grpc (0.01s) - --- PASS: TestDefaultObjectACLCRUDEmulated/http (0.00s) -=== RUN TestObjectACLCRUDEmulated -=== RUN TestObjectACLCRUDEmulated/grpc -=== RUN TestObjectACLCRUDEmulated/http ---- PASS: TestObjectACLCRUDEmulated (0.02s) - --- PASS: TestObjectACLCRUDEmulated/grpc (0.01s) - --- PASS: TestObjectACLCRUDEmulated/http (0.01s) -=== RUN TestOpenReaderEmulated -=== RUN TestOpenReaderEmulated/http -=== RUN TestOpenReaderEmulated/grpc ---- PASS: TestOpenReaderEmulated (0.01s) - --- PASS: TestOpenReaderEmulated/http (0.01s) - --- PASS: TestOpenReaderEmulated/grpc (0.01s) -=== RUN TestOpenWriterEmulated -=== RUN TestOpenWriterEmulated/http -=== RUN TestOpenWriterEmulated/grpc ---- PASS: TestOpenWriterEmulated (0.01s) - --- PASS: TestOpenWriterEmulated/http (0.00s) - --- PASS: TestOpenWriterEmulated/grpc (0.00s) -=== RUN TestListNotificationsEmulated -=== RUN TestListNotificationsEmulated/http -=== RUN TestListNotificationsEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented ---- PASS: TestListNotificationsEmulated (0.00s) - --- PASS: TestListNotificationsEmulated/http (0.00s) - --- SKIP: TestListNotificationsEmulated/grpc (0.00s) -=== RUN TestCreateNotificationEmulated -=== RUN TestCreateNotificationEmulated/http -=== RUN TestCreateNotificationEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented ---- PASS: TestCreateNotificationEmulated (0.00s) - --- PASS: TestCreateNotificationEmulated/http (0.00s) - --- SKIP: TestCreateNotificationEmulated/grpc (0.00s) -=== RUN TestDeleteNotificationEmulated -=== RUN TestDeleteNotificationEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: notifications not implemented -=== RUN TestDeleteNotificationEmulated/http ---- PASS: TestDeleteNotificationEmulated (0.00s) - --- SKIP: TestDeleteNotificationEmulated/grpc (0.00s) - --- PASS: TestDeleteNotificationEmulated/http (0.00s) -=== RUN TestLockBucketRetentionPolicyEmulated -=== RUN TestLockBucketRetentionPolicyEmulated/http -=== RUN TestLockBucketRetentionPolicyEmulated/grpc ---- PASS: TestLockBucketRetentionPolicyEmulated (0.01s) - --- PASS: TestLockBucketRetentionPolicyEmulated/http (0.00s) - --- PASS: TestLockBucketRetentionPolicyEmulated/grpc (0.00s) -=== RUN TestComposeEmulated -=== RUN TestComposeEmulated/http -=== RUN TestComposeEmulated/grpc ---- PASS: TestComposeEmulated (0.02s) - --- PASS: TestComposeEmulated/http (0.01s) - --- PASS: TestComposeEmulated/grpc (0.01s) -=== RUN TestHMACKeyCRUDEmulated -=== RUN TestHMACKeyCRUDEmulated/http -=== RUN TestHMACKeyCRUDEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: hmac not implemented ---- PASS: TestHMACKeyCRUDEmulated (0.00s) - --- PASS: TestHMACKeyCRUDEmulated/http (0.00s) - --- SKIP: TestHMACKeyCRUDEmulated/grpc (0.00s) -=== RUN TestBucketConditionsEmulated -=== RUN TestBucketConditionsEmulated/http -=== RUN TestBucketConditionsEmulated/http/get -=== RUN TestBucketConditionsEmulated/http/update -=== RUN TestBucketConditionsEmulated/http/delete -=== RUN TestBucketConditionsEmulated/http/lockRetentionPolicy -=== RUN TestBucketConditionsEmulated/grpc -=== RUN TestBucketConditionsEmulated/grpc/get -=== RUN TestBucketConditionsEmulated/grpc/update -=== RUN TestBucketConditionsEmulated/grpc/delete -=== RUN TestBucketConditionsEmulated/grpc/lockRetentionPolicy ---- PASS: TestBucketConditionsEmulated (0.02s) - --- PASS: TestBucketConditionsEmulated/http (0.01s) - --- PASS: TestBucketConditionsEmulated/http/get (0.00s) - --- PASS: TestBucketConditionsEmulated/http/update (0.00s) - --- PASS: TestBucketConditionsEmulated/http/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/http/lockRetentionPolicy (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc (0.01s) - --- PASS: TestBucketConditionsEmulated/grpc/get (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/update (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/delete (0.00s) - --- PASS: TestBucketConditionsEmulated/grpc/lockRetentionPolicy (0.00s) -=== RUN TestObjectConditionsEmulated -=== RUN TestObjectConditionsEmulated/grpc -=== RUN TestObjectConditionsEmulated/grpc/update_generation -=== RUN TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http -=== RUN TestObjectConditionsEmulated/http/update_generation -=== RUN TestObjectConditionsEmulated/http/update_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/write_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch -=== RUN TestObjectConditionsEmulated/http/compose_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/delete_ifGenerationMatch -=== RUN TestObjectConditionsEmulated/http/get_ifMetagenerationMatch ---- PASS: TestObjectConditionsEmulated (0.07s) - --- PASS: TestObjectConditionsEmulated/grpc (0.03s) - --- PASS: TestObjectConditionsEmulated/grpc/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/update_ifMetagenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/grpc/delete_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/grpc/get_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http (0.04s) - --- PASS: TestObjectConditionsEmulated/http/update_generation (0.01s) - --- PASS: TestObjectConditionsEmulated/http/update_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/write_ifGenerationMatch (0.00s) - --- PASS: TestObjectConditionsEmulated/http/rewrite_ifMetagenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/compose_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/delete_ifGenerationMatch (0.01s) - --- PASS: TestObjectConditionsEmulated/http/get_ifMetagenerationMatch (0.00s) -=== RUN TestRetryNeverEmulated -=== RUN TestRetryNeverEmulated/http -=== RUN TestRetryNeverEmulated/grpc ---- PASS: TestRetryNeverEmulated (0.01s) - --- PASS: TestRetryNeverEmulated/http (0.00s) - --- PASS: TestRetryNeverEmulated/grpc (0.00s) -=== RUN TestRetryTimeoutEmulated -=== RUN TestRetryTimeoutEmulated/http -=== RUN TestRetryTimeoutEmulated/grpc ---- PASS: TestRetryTimeoutEmulated (0.21s) - --- PASS: TestRetryTimeoutEmulated/http (0.10s) - --- PASS: TestRetryTimeoutEmulated/grpc (0.10s) -=== RUN TestRetryMaxAttemptsEmulated -=== RUN TestRetryMaxAttemptsEmulated/http -=== RUN TestRetryMaxAttemptsEmulated/grpc ---- PASS: TestRetryMaxAttemptsEmulated (0.03s) - --- PASS: TestRetryMaxAttemptsEmulated/http (0.02s) - --- PASS: TestRetryMaxAttemptsEmulated/grpc (0.02s) -=== RUN TestTimeoutErrorEmulated -=== RUN TestTimeoutErrorEmulated/http -=== RUN TestTimeoutErrorEmulated/grpc ---- PASS: TestTimeoutErrorEmulated (0.00s) - --- PASS: TestTimeoutErrorEmulated/http (0.00s) - --- PASS: TestTimeoutErrorEmulated/grpc (0.00s) -=== RUN TestRetryDeadlineExceedeEmulated -=== RUN TestRetryDeadlineExceedeEmulated/http -=== RUN TestRetryDeadlineExceedeEmulated/grpc ---- PASS: TestRetryDeadlineExceedeEmulated (0.04s) - --- PASS: TestRetryDeadlineExceedeEmulated/http (0.03s) - --- PASS: TestRetryDeadlineExceedeEmulated/grpc (0.01s) -=== RUN TestRetryReadStallEmulated -2024/11/25 05:09:24 stalled read-req (0xc00242e280) cancelled after 0.010000s ---- PASS: TestRetryReadStallEmulated (0.64s) -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero -=== RUN TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: service is not implemented ---- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated (15.03s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http (15.03s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-zero (5.00s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-zero (5.00s) - --- PASS: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero (5.03s) - --- SKIP: TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated/grpc (0.00s) -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero -=== RUN TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/grpc - client_test.go:1809: transport "grpc" explicitly skipped: service is not implemented ---- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated (12.41s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http (12.41s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-with-chunk-transfer-timeout-nonzero (4.11s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-second-chunk-with-chunk-transfer-timeout-nonzero (4.09s) - --- PASS: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/http/stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero (4.21s) - --- SKIP: TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated/grpc (0.00s) -=== RUN TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 -=== RUN TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get - retry_conformance_test.go:617: No tests for operation storage.object_acl.insert -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.patch -=== RUN TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.bucket_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.buckets.update - retry_conformance_test.go:617: No tests for operation storage.default_object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.notifications.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.object_acl.get -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 - retry_conformance_test.go:777: This retry test case is not yet supported in the testbench. -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.copy -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 -=== NAME TestRetryConformance - retry_conformance_test.go:617: No tests for operation storage.objects.update -=== RUN TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 -=== RUN TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 - retry_conformance_test.go:625: not supported -=== RUN TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 -=== RUN TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 -=== RUN TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 ---- PASS: TestRetryConformance (18.78s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.get-0 (0.04s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.list-0 (0.05s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.list-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.buckets.testIamPermissions-0 (0.07s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.hmacKey.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.notifications.list-0 (0.08s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-1 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-503_return-503]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-503_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.getIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.insert-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.06s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.list-0 (0.07s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.07s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-2 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-reset-connection]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.getIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.insert-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.07s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.lockRetentionPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.04s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-0 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-1 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.get-3 (0.03s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.03s) - --- PASS: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/http-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-1-[return-reset-connection_return-503]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-503_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.compose-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-1 (0.15s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.insert-2 (2.06s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-503_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-503_return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.03s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.delete-0 (0.04s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.05s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.insert-2 (0.41s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-reset-connection]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.patch-0 (0.06s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.buckets.setIamPolicy-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.delete-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.04s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-1 (0.13s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.insert-2 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.insert-2 (1.26s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.patch-0 (0.03s) - --- PASS: TestRetryConformance/http-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-2-[return-reset-connection_return-503]-storage.objects.rewrite-0 (0.03s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-503]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-503]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-3-[return-reset-connection]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-3-[return-reset-connection]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-503]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-503]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-4-[return-reset-connection]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-4-[return-reset-connection]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.object_acl.update-0 (0.06s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.bucket_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.bucket_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.list-0 (0.03s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.default_object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.default_object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.create-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.insert-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.insert-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.delete-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.object_acl.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.object_acl.update-0 (0.00s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.compose-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.get-3 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-5-[return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- SKIP: TestRetryConformance/grpc-5-[return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.insert-0 (0.00s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.setIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.object_acl.list-0 (0.02s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-2 (0.04s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.insert-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.insert-2 (0.08s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.objects.rewrite-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-503_return-400]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-503_return-400]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.bucket_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.delete-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.get-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.getIamPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.lockRetentionPolicy-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.patch-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.setIamPolicy-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.buckets.testIamPermissions-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.default_object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.get-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.hmacKey.update-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.delete-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.notifications.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.object_acl.list-0 (0.00s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.compose-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.delete-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-1 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-2 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.get-3 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.list-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-1 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.insert-2 (0.05s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.patch-0 (0.02s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.objects.rewrite-0 (0.01s) - --- PASS: TestRetryConformance/http-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.01s) - --- SKIP: TestRetryConformance/grpc-6-[return-reset-connection_return-401]-storage.serviceaccount.get-0 (0.00s) - --- PASS: TestRetryConformance/http-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-reset-connection_return-503]-storage.resumable.upload-0 (1.85s) - --- PASS: TestRetryConformance/http-7-[return-408]-storage.resumable.upload-0 (0.06s) - --- PASS: TestRetryConformance/grpc-7-[return-408]-storage.resumable.upload-0 (1.22s) - --- PASS: TestRetryConformance/http-7-[return-503-after-256K]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-256K]-storage.resumable.upload-0 (0.47s) - --- PASS: TestRetryConformance/http-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.07s) - --- PASS: TestRetryConformance/grpc-7-[return-503-after-8192K_return-408]-storage.resumable.upload-0 (0.39s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-0 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-1 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-1 (0.14s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream]-storage.objects.download-2 (0.04s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream]-storage.objects.download-2 (0.14s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.83s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-0 (0.15s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.80s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-1 (0.14s) - --- PASS: TestRetryConformance/http-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.77s) - --- PASS: TestRetryConformance/grpc-8-[return-broken-stream-after-256K]-storage.objects.download-2 (0.14s) -PASS -ok cloud.google.com/go/storage 47.681s From 707a118d65985837d1f0cabef8898b15ef537eec Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Mon, 25 Nov 2024 05:22:54 +0000 Subject: [PATCH 15/21] review comments --- storage/client_test.go | 130 +++++------------------------------------ 1 file changed, 16 insertions(+), 114 deletions(-) diff --git a/storage/client_test.go b/storage/client_test.go index a90375419c6d..752bafdb0d78 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1506,9 +1506,7 @@ func TestRetryReadStallEmulated(t *testing.T) { } } -// In resumable uploads, the first chunk encounter a stall. Because ChunkTransferTimeout is set to 0, -// the upload must wait for the entire stall duration. -func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) { +func TestWriterChunkTransferTimeoutEmulated(t *testing.T) { transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) if err != nil { @@ -1518,126 +1516,37 @@ func TestRetryWriteReqStallWithDefaultChunkTransferTimeoutEmulated(t *testing.T) chunkSize := 2 * 1024 * 1024 // 2 MiB fileSize := 5 * 1024 * 1024 // 5 MiB tests := []struct { - name string - instructions map[string][]string - wantDuration time.Duration + name string + instructions map[string][]string + chunkTransferTimeout time.Duration }{ { name: "stall-on-first-chunk-with-chunk-transfer-timeout-zero", instructions: map[string][]string{ "storage.objects.insert": {"stall-for-1s-after-1024K"}, }, - wantDuration: 1 * time.Second, + chunkTransferTimeout: 0, }, { name: "stall-on-second-chunk-with-chunk-transfer-timeout-zero", instructions: map[string][]string{ "storage.objects.insert": {"stall-for-1s-after-3072K"}, }, - wantDuration: 1 * time.Second, + chunkTransferTimeout: 0, }, { name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero", instructions: map[string][]string{ "storage.objects.insert": {"stall-for-1s-after-1024K", "stall-for-1s-after-1024K"}, }, - wantDuration: 1 * time.Second, + chunkTransferTimeout: 0, }, - } - - for _, tc := range tests { - t.Run(tc.name, func(t *testing.T) { - testID := createRetryTest(t, client, tc.instructions) - ctx := callctx.SetHeaders(ctx, "x-retry-test-id", testID) - - prefix := time.Now().Nanosecond() - want := &ObjectAttrs{ - Bucket: bucket, - Name: fmt.Sprintf("%d-object-%d", prefix, time.Now().Nanosecond()), - Generation: defaultGen, - } - - var gotAttrs *ObjectAttrs - params := &openWriterParams{ - attrs: want, - bucket: bucket, - chunkSize: chunkSize, - ctx: ctx, - donec: make(chan struct{}), - setError: func(_ error) {}, // no-op - progress: func(_ int64) {}, // no-op - setObj: func(o *ObjectAttrs) { gotAttrs = o }, - } - - startTime := time.Now() - pw, err := client.OpenWriter(params) - if err != nil { - t.Fatalf("failed to open writer: %v", err) - } - buffer := bytes.Repeat([]byte("A"), fileSize) - if _, err := pw.Write(buffer); err != nil { - t.Fatalf("failed to populate test data: %v", err) - } - if err := pw.Close(); err != nil { - t.Fatalf("closing object: %v", err) - } - endTime := time.Now() - select { - case <-params.donec: - } - if gotAttrs == nil { - t.Fatalf("Writer finished, but resulting object wasn't set") - } - if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { - t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) - } - if endTime.Sub(startTime) < tc.wantDuration { - t.Errorf("write took %v, want >= %v", endTime.Sub(startTime), tc.wantDuration) - } - - r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) - if err != nil { - t.Fatalf("opening reading: %v", err) - } - wantLen := len(buffer) - got := make([]byte, wantLen) - n, err := r.Read(got) - if n != wantLen { - t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) - } - if diff := cmp.Diff(got, buffer); diff != "" { - t.Fatalf("checking written content: got(-),want(+):\n%s", diff) - } - }) - } - }) -} - -// In resumable uploads, the chunk encounter a stall. The chunkTransferTimeout will then cancel the request and resend it. -// The second request is expected to succeed. This allows the upload to finish earlier than if it had waited for the entire stall -// duration, as the chunkTransferTimeout prevents unnecessary delays. -func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) { - transportClientTest(skipGRPC("service is not implemented"), t, func(t *testing.T, ctx context.Context, project, bucket string, client storageClient) { - _, err := client.CreateBucket(ctx, project, bucket, &BucketAttrs{}, nil) - if err != nil { - t.Fatalf("creating bucket: %v", err) - } - - chunkSize := 2 * 1024 * 1024 // 2 MiB - fileSize := 5 * 1024 * 1024 // 5 MiB - tests := []struct { - name string - instructions map[string][]string - chunkTransferTimeout time.Duration - wantDuration time.Duration - }{ { name: "stall-on-first-chunk-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ "storage.objects.insert": {"stall-for-1s-after-1024K"}, }, chunkTransferTimeout: 100 * time.Millisecond, - wantDuration: 1 * time.Second, }, { name: "stall-on-second-chunk-with-chunk-transfer-timeout-nonzero", @@ -1645,7 +1554,6 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) "storage.objects.insert": {"stall-for-1s-after-3072K"}, }, chunkTransferTimeout: 100 * time.Millisecond, - wantDuration: 1 * time.Second, }, { name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero", @@ -1653,7 +1561,6 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) "storage.objects.insert": {"stall-for-1s-after-1024K", "stall-for-1s-after-1024K"}, }, chunkTransferTimeout: 100 * time.Millisecond, - wantDuration: 1 * time.Second, }, } @@ -1671,18 +1578,17 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) var gotAttrs *ObjectAttrs params := &openWriterParams{ - attrs: want, - bucket: bucket, - chunkSize: chunkSize, - chunkTransferTimeout: tc.chunkTransferTimeout, - ctx: ctx, - donec: make(chan struct{}), - setError: func(_ error) {}, // no-op - progress: func(_ int64) {}, // no-op - setObj: func(o *ObjectAttrs) { gotAttrs = o }, + attrs: want, + bucket: bucket, + chunkSize: chunkSize, + chunkRetryDeadline: 2 * time.Second, + ctx: ctx, + donec: make(chan struct{}), + setError: func(_ error) {}, // no-op + progress: func(_ int64) {}, // no-op + setObj: func(o *ObjectAttrs) { gotAttrs = o }, } - startTime := time.Now() pw, err := client.OpenWriter(params) if err != nil { t.Fatalf("failed to open writer: %v", err) @@ -1694,7 +1600,6 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) if err := pw.Close(); err != nil { t.Fatalf("closing object: %v", err) } - endTime := time.Now() select { case <-params.donec: } @@ -1704,9 +1609,6 @@ func TestRetryWriteReqStallWithNonZeroChunkTransferTimeoutEmulated(t *testing.T) if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) } - if endTime.Sub(startTime) > tc.wantDuration { - t.Errorf("write took %v, want <= %v", endTime.Sub(startTime), tc.wantDuration) - } r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) if err != nil { From dbd1d3298b9bab00c9674b4750a1c2254ee57f24 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Mon, 25 Nov 2024 09:05:56 +0000 Subject: [PATCH 16/21] review comments --- storage/client_test.go | 115 +++++++++++++++++++++++------------------ 1 file changed, 66 insertions(+), 49 deletions(-) diff --git a/storage/client_test.go b/storage/client_test.go index 752bafdb0d78..27f842c958f0 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1519,55 +1519,65 @@ func TestWriterChunkTransferTimeoutEmulated(t *testing.T) { name string instructions map[string][]string chunkTransferTimeout time.Duration + expectedSuccess bool }{ { name: "stall-on-first-chunk-with-chunk-transfer-timeout-zero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-1s-after-1024K"}, + "storage.objects.insert": {"stall-for-10s-after-1024K"}, }, chunkTransferTimeout: 0, + expectedSuccess: false, }, { - name: "stall-on-second-chunk-with-chunk-transfer-timeout-zero", + name: "stall-on-first-chunk-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-1s-after-3072K"}, + "storage.objects.insert": {"stall-for-10s-after-1024K"}, }, - chunkTransferTimeout: 0, + chunkTransferTimeout: 100 * time.Millisecond, + expectedSuccess: true, }, { - name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero", + name: "stall-on-second-chunk-with-chunk-transfer-timeout-zero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-1s-after-1024K", "stall-for-1s-after-1024K"}, + "storage.objects.insert": {"stall-for-10s-after-3072K"}, }, chunkTransferTimeout: 0, + expectedSuccess: false, }, { - name: "stall-on-first-chunk-with-chunk-transfer-timeout-nonzero", + name: "stall-on-second-chunk-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-1s-after-1024K"}, + "storage.objects.insert": {"stall-for-10s-after-3072K"}, }, chunkTransferTimeout: 100 * time.Millisecond, + expectedSuccess: true, }, { - name: "stall-on-second-chunk-with-chunk-transfer-timeout-nonzero", + name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-zero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-1s-after-3072K"}, + "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, }, - chunkTransferTimeout: 100 * time.Millisecond, + chunkTransferTimeout: 0, + expectedSuccess: false, }, { name: "stall-on-first-chunk-twice-with-chunk-transfer-timeout-nonzero", instructions: map[string][]string{ - "storage.objects.insert": {"stall-for-1s-after-1024K", "stall-for-1s-after-1024K"}, + "storage.objects.insert": {"stall-for-10s-after-1024K", "stall-for-10s-after-1024K"}, }, chunkTransferTimeout: 100 * time.Millisecond, + expectedSuccess: true, }, } for _, tc := range tests { t.Run(tc.name, func(t *testing.T) { testID := createRetryTest(t, client, tc.instructions) - ctx := callctx.SetHeaders(ctx, "x-retry-test-id", testID) + var cancel context.CancelFunc + rCtx := callctx.SetHeaders(ctx, "x-retry-test-id", testID) + rCtx, cancel = context.WithTimeout(rCtx, 1*time.Second) + defer cancel() prefix := time.Now().Nanosecond() want := &ObjectAttrs{ @@ -1578,15 +1588,15 @@ func TestWriterChunkTransferTimeoutEmulated(t *testing.T) { var gotAttrs *ObjectAttrs params := &openWriterParams{ - attrs: want, - bucket: bucket, - chunkSize: chunkSize, - chunkRetryDeadline: 2 * time.Second, - ctx: ctx, - donec: make(chan struct{}), - setError: func(_ error) {}, // no-op - progress: func(_ int64) {}, // no-op - setObj: func(o *ObjectAttrs) { gotAttrs = o }, + attrs: want, + bucket: bucket, + chunkSize: chunkSize, + chunkTransferTimeout: tc.chunkTransferTimeout, + ctx: rCtx, + donec: make(chan struct{}), + setError: func(_ error) {}, // no-op + progress: func(_ int64) {}, // no-op + setObj: func(o *ObjectAttrs) { gotAttrs = o }, } pw, err := client.OpenWriter(params) @@ -1594,34 +1604,41 @@ func TestWriterChunkTransferTimeoutEmulated(t *testing.T) { t.Fatalf("failed to open writer: %v", err) } buffer := bytes.Repeat([]byte("A"), fileSize) - if _, err := pw.Write(buffer); err != nil { - t.Fatalf("failed to populate test data: %v", err) - } - if err := pw.Close(); err != nil { - t.Fatalf("closing object: %v", err) - } - select { - case <-params.donec: - } - if gotAttrs == nil { - t.Fatalf("Writer finished, but resulting object wasn't set") - } - if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { - t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) - } + _, err = pw.Write(buffer) + if tc.expectedSuccess { + if err != nil { + t.Fatalf("failed to populate test data: %v", err) + } + if err := pw.Close(); err != nil { + t.Fatalf("closing object: %v", err) + } + select { + case <-params.donec: + } + if gotAttrs == nil { + t.Fatalf("Writer finished, but resulting object wasn't set") + } + if diff := cmp.Diff(gotAttrs.Name, want.Name); diff != "" { + t.Fatalf("Resulting object name: got(-),want(+):\n%s", diff) + } - r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) - if err != nil { - t.Fatalf("opening reading: %v", err) - } - wantLen := len(buffer) - got := make([]byte, wantLen) - n, err := r.Read(got) - if n != wantLen { - t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) - } - if diff := cmp.Diff(got, buffer); diff != "" { - t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + r, err := veneerClient.Bucket(bucket).Object(want.Name).NewReader(ctx) + if err != nil { + t.Fatalf("opening reading: %v", err) + } + wantLen := len(buffer) + got := make([]byte, wantLen) + n, err := r.Read(got) + if n != wantLen { + t.Fatalf("expected to read %d bytes, but got %d", wantLen, n) + } + if diff := cmp.Diff(got, buffer); diff != "" { + t.Fatalf("checking written content: got(-),want(+):\n%s", diff) + } + } else { + if !errors.Is(err, context.DeadlineExceeded) { + t.Fatalf("expected context deadline exceeded found %v", err.Error()) + } } }) } From ddf44757838057e7586c365bf5eb4c07612aab12 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Mon, 25 Nov 2024 09:15:19 +0000 Subject: [PATCH 17/21] small fix --- storage/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/client_test.go b/storage/client_test.go index 27f842c958f0..35a825289baa 100644 --- a/storage/client_test.go +++ b/storage/client_test.go @@ -1637,7 +1637,7 @@ func TestWriterChunkTransferTimeoutEmulated(t *testing.T) { } } else { if !errors.Is(err, context.DeadlineExceeded) { - t.Fatalf("expected context deadline exceeded found %v", err.Error()) + t.Fatalf("expected context deadline exceeded found %v", err) } } }) From de93ea15ec35c55797704686a21c95bb7004357d Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Wed, 4 Dec 2024 18:17:23 +0000 Subject: [PATCH 18/21] fix presubmit test --- go.mod | 30 +++++++++++------------ go.sum | 64 +++++++++++++++++++++++++------------------------- go.work.sum | 13 ++++++---- storage/go.mod | 12 +++++----- storage/go.sum | 24 +++++++++---------- 5 files changed, 74 insertions(+), 69 deletions(-) diff --git a/go.mod b/go.mod index d0e999c08bb4..e83aa06fbdb3 100644 --- a/go.mod +++ b/go.mod @@ -6,25 +6,25 @@ require ( cloud.google.com/go/storage v1.43.0 github.com/google/go-cmp v0.6.0 github.com/google/martian/v3 v3.3.3 - github.com/googleapis/gax-go/v2 v2.13.0 + github.com/googleapis/gax-go/v2 v2.14.0 go.opencensus.io v0.24.0 go.opentelemetry.io/otel v1.29.0 go.opentelemetry.io/otel/sdk v1.29.0 go.opentelemetry.io/otel/trace v1.29.0 - golang.org/x/oauth2 v0.23.0 - google.golang.org/api v0.203.0 - google.golang.org/genproto v0.0.0-20241015192408-796eee8c2d53 - google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 - google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 + golang.org/x/oauth2 v0.24.0 + google.golang.org/api v0.210.0 + google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 + google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f + google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 google.golang.org/grpc v1.67.1 - google.golang.org/protobuf v1.35.1 + google.golang.org/protobuf v1.35.2 ) require ( - cloud.google.com/go/auth v0.9.9 // indirect + cloud.google.com/go/auth v0.11.0 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.6 // indirect cloud.google.com/go/compute/metadata v0.5.2 // indirect - cloud.google.com/go/iam v1.2.1 // indirect + cloud.google.com/go/iam v1.2.2 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-logr/logr v1.4.2 // indirect github.com/go-logr/stdr v1.2.2 // indirect @@ -36,10 +36,10 @@ require ( go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect go.opentelemetry.io/otel/metric v1.29.0 // indirect - golang.org/x/crypto v0.28.0 // indirect - golang.org/x/net v0.30.0 // indirect - golang.org/x/sync v0.8.0 // indirect - golang.org/x/sys v0.26.0 // indirect - golang.org/x/text v0.19.0 // indirect - golang.org/x/time v0.7.0 // indirect + golang.org/x/crypto v0.29.0 // indirect + golang.org/x/net v0.31.0 // indirect + golang.org/x/sync v0.9.0 // indirect + golang.org/x/sys v0.27.0 // indirect + golang.org/x/text v0.20.0 // indirect + golang.org/x/time v0.8.0 // indirect ) diff --git a/go.sum b/go.sum index 0da504bc22aa..561f251527c7 100644 --- a/go.sum +++ b/go.sum @@ -1,14 +1,14 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go/auth v0.9.9 h1:BmtbpNQozo8ZwW2t7QJjnrQtdganSdmqeIBxHxNkEZQ= -cloud.google.com/go/auth v0.9.9/go.mod h1:xxA5AqpDrvS+Gkmo9RqrGGRh6WSNKKOXhY3zNOr38tI= +cloud.google.com/go/auth v0.11.0 h1:Ic5SZz2lsvbYcWT5dfjNWgw6tTlGi2Wc8hyQSC9BstA= +cloud.google.com/go/auth v0.11.0/go.mod h1:xxA5AqpDrvS+Gkmo9RqrGGRh6WSNKKOXhY3zNOr38tI= cloud.google.com/go/auth/oauth2adapt v0.2.6 h1:V6a6XDu2lTwPZWOawrAa9HUK+DB2zfJyTuciBG5hFkU= cloud.google.com/go/auth/oauth2adapt v0.2.6/go.mod h1:AlmsELtlEBnaNTL7jCj8VQFLy6mbZv0s4Q7NGBeQ5E8= cloud.google.com/go/compute/metadata v0.5.2 h1:UxK4uu/Tn+I3p2dYWTfiX4wva7aYlKixAHn3fyqngqo= cloud.google.com/go/compute/metadata v0.5.2/go.mod h1:C66sj2AluDcIqakBq/M8lw8/ybHgOZqin2obFxa/E5k= -cloud.google.com/go/iam v1.2.1 h1:QFct02HRb7H12J/3utj0qf5tobFh9V4vR6h9eX5EBRU= -cloud.google.com/go/iam v1.2.1/go.mod h1:3VUIJDPpwT6p/amXRC5GY8fCCh70lxPygguVtI0Z4/g= -cloud.google.com/go/longrunning v0.6.1 h1:lOLTFxYpr8hcRtcwWir5ITh1PAKUD/sG2lKrTSYjyMc= -cloud.google.com/go/longrunning v0.6.1/go.mod h1:nHISoOZpBcmlwbJmiVk5oDRz0qG/ZxPynEGs1iZ79s0= +cloud.google.com/go/iam v1.2.2 h1:ozUSofHUGf/F4tCNy/mu9tHLTaxZFLOUiKzjcgWHGIA= +cloud.google.com/go/iam v1.2.2/go.mod h1:0Ys8ccaZHdI1dEUilwzqng/6ps2YB6vRsjIe00/+6JY= +cloud.google.com/go/longrunning v0.6.2 h1:xjDfh1pQcWPEvnfjZmwjKQEcHnpz6lHjfy7Fo0MK+hc= +cloud.google.com/go/longrunning v0.6.2/go.mod h1:k/vIs83RN4bE3YCswdXC5PFfWVILjm3hpEUlSko4PiI= cloud.google.com/go/storage v1.43.0 h1:CcxnSohZwizt4LCzQHWvBf1/kvtHUn7gk9QERXPyXFs= cloud.google.com/go/storage v1.43.0/go.mod h1:ajvxEa7WmZS1PxvKRq4bq0tFT3vMd502JwstCcYv0Q0= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= @@ -64,8 +64,8 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/enterprise-certificate-proxy v0.3.4 h1:XYIDZApgAnrN1c855gTgghdIA6Stxb52D5RnLI1SLyw= github.com/googleapis/enterprise-certificate-proxy v0.3.4/go.mod h1:YKe7cfqYXjKGpGvmSg28/fFvhNzinZQm8DGnaburhGA= -github.com/googleapis/gax-go/v2 v2.13.0 h1:yitjD5f7jQHhyDsnhKEBU52NdvvdSeGzlAnDPT0hH1s= -github.com/googleapis/gax-go/v2 v2.13.0/go.mod h1:Z/fvTZXF8/uw7Xu5GuslPw+bplx6SS338j1Is2S+B7A= +github.com/googleapis/gax-go/v2 v2.14.0 h1:f+jMrjBPl+DL9nI4IQzLUxMq7XrAqFYB7hBPqMNIe8o= +github.com/googleapis/gax-go/v2 v2.14.0/go.mod h1:lhBCnjdLrWRaPvLWhmc8IS24m9mr07qSYnHncrgo+zk= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= @@ -93,8 +93,8 @@ go.opentelemetry.io/otel/trace v1.29.0 h1:J/8ZNK4XgR7a21DZUAsbF8pZ5Jcw1VhACmnYt3 go.opentelemetry.io/otel/trace v1.29.0/go.mod h1:eHl3w0sp3paPkYstJOmAimxhiFXPg+MMTlEh3nsQgWQ= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw= -golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U= +golang.org/x/crypto v0.29.0 h1:L5SG1JTTXupVV3n6sUqMTeWbjAyfPwoda2DLX8J8FrQ= +golang.org/x/crypto v0.29.0/go.mod h1:+F4F4N5hv6v38hfeYwTdx20oUvLLc+QfrE9Ax9HtgRg= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= @@ -105,47 +105,47 @@ golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4= -golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU= +golang.org/x/net v0.31.0 h1:68CPQngjLL0r2AlUKiSxtQFKvzRVbnzLwMUn5SzcLHo= +golang.org/x/net v0.31.0/go.mod h1:P4fl1q7dY2hnZFxEk4pPSkDHF+QqjitcnDjUQyMM+pM= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs= -golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= +golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE= +golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= -golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.9.0 h1:fEo0HyrW1GIgZdpbhCRO0PkJajUS5H9IFUztCgEo2jQ= +golang.org/x/sync v0.9.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo= -golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s= +golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM= -golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= -golang.org/x/time v0.7.0 h1:ntUhktv3OPE6TgYxXWv9vKvUSJyIFJlyohwbkEwPrKQ= -golang.org/x/time v0.7.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= +golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug= +golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4= +golang.org/x/time v0.8.0 h1:9i3RxcPv3PZnitoVGMPDKZSq1xW1gK1Xy3ArNOGZfEg= +golang.org/x/time v0.8.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/api v0.203.0 h1:SrEeuwU3S11Wlscsn+LA1kb/Y5xT8uggJSkIhD08NAU= -google.golang.org/api v0.203.0/go.mod h1:BuOVyCSYEPwJb3npWvDnNmFI92f3GeRnHNkETneT3SI= +google.golang.org/api v0.210.0 h1:HMNffZ57OoZCRYSbdWVRoqOa8V8NIHLL0CzdBPLztWk= +google.golang.org/api v0.210.0/go.mod h1:B9XDZGnx2NtyjzVkOVTGrFSAVZgPcbedzKg/gTLwqBs= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20241015192408-796eee8c2d53 h1:Df6WuGvthPzc+JiQ/G+m+sNX24kc0aTBqoDN/0yyykE= -google.golang.org/genproto v0.0.0-20241015192408-796eee8c2d53/go.mod h1:fheguH3Am2dGp1LfXkrvwqC/KlFq8F0nLq3LryOMrrE= -google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 h1:T6rh4haD3GVYsgEfWExoCZA2o2FmbNyKpTuAxbEFPTg= -google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9/go.mod h1:wp2WsuBYj6j8wUdo3ToZsdxxixbvQNAHqVJrTgi5E5M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 h1:X58yt85/IXCx0Y3ZwN6sEIKZzQtDEYaBWrDvErdXrRE= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= +google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 h1:ToEetK57OidYuqD4Q5w+vfEnPvPpuTwedCNVohYJfNk= +google.golang.org/genproto v0.0.0-20241118233622-e639e219e697/go.mod h1:JJrvXBWRZaFMxBufik1a4RpFw4HhgVtBBWQeQgUj2cc= +google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f h1:M65LEviCfuZTfrfzwwEoxVtgvfkFkBUbFnRbxCXuXhU= +google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f/go.mod h1:Yo94eF2nj7igQt+TiJ49KxjIH8ndLYPZMIRSiRcEbg0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 h1:LWZqQOEjDyONlF1H6afSWpAL/znlREo2tHfLoe+8LMA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697/go.mod h1:5uTbfoYQed2U9p3KIj2/Zzm02PYhndfdmML0qC3q3FU= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= @@ -162,8 +162,8 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -google.golang.org/protobuf v1.35.1 h1:m3LfL6/Ca+fqnjnlqQXNpFPABW1UD7mjh8KO2mKFytA= -google.golang.org/protobuf v1.35.1/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= +google.golang.org/protobuf v1.35.2 h1:8Ar7bF+apOIoThw1EdZl0p1oWvMqTHmpA2fRTyZO8io= +google.golang.org/protobuf v1.35.2/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/go.work.sum b/go.work.sum index 638d2e1acde0..0a60a6e6f10b 100644 --- a/go.work.sum +++ b/go.work.sum @@ -1,4 +1,5 @@ cloud.google.com/go/auth v0.2.0/go.mod h1:+yb+oy3/P0geX6DLKlqiGHARGR6EX2GRtYCzWOCQSbU= +cloud.google.com/go/auth v0.10.1/go.mod h1:xxA5AqpDrvS+Gkmo9RqrGGRh6WSNKKOXhY3zNOr38tI= cloud.google.com/go/auth/oauth2adapt v0.2.0/go.mod h1:AfqujpDAlTfLfeCIl/HJZZlIxD8+nJoZ5e0x1IxGq5k= cloud.google.com/go/dataproc v1.12.0 h1:W47qHL3W4BPkAIbk4SWmIERwsWBaNnWm0P2sdx3YgGU= cloud.google.com/go/gaming v1.9.0 h1:7vEhFnZmd931Mo7sZ6pJy7uQPDxF7m7v8xtBheG08tc= @@ -31,7 +32,6 @@ github.com/fullstorydev/grpcurl v1.8.7/go.mod h1:pVtM4qe3CMoLaIzYS8uvTuDj2jVYmXq github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM= github.com/gobwas/pool v0.2.1/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= github.com/gobwas/ws v1.2.1/go.mod h1:hRKAFb8wOxFROYNsT1bqfWnhX+b5MFeJM9r2ZSwg/KY= -github.com/golang/glog v1.2.2/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w= github.com/golang/mock v1.7.0-rc.1 h1:YojYx61/OLFsiv6Rw1Z96LpldJIy31o+UHmwAUMJ6/U= github.com/google/go-jsonnet v0.20.0/go.mod h1:VbgWF9JX7ztlv770x/TolZNGGFfiHEVx9G6ca2eUmeA= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= @@ -71,20 +71,25 @@ golang.org/x/mod v0.9.0 h1:KENHtAZL2y3NLMYZeHY9DW8HW8V+kQyJsY/V9JlKvCs= golang.org/x/mod v0.11.0 h1:bUO06HqtnRcc/7l71XBe4WcqTZ+3AH1J59zWDDwLKgU= golang.org/x/mod v0.16.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/telemetry v0.0.0-20240208230135-b75ee8823808/go.mod h1:KG1lNk5ZFNssSZLrpVb4sMXKMpGwGXOxSG3rnu2gZQQ= -golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M= +golang.org/x/term v0.26.0/go.mod h1:Si5m1o57C5nBNQo5z1iq+XDijt21BDBDp2bK0QI8e3E= golang.org/x/tools v0.7.0 h1:W4OVu8VVOaIO0yzWMNdepAulS7YfoS3Zabrm8DOXXU4= golang.org/x/tools v0.10.0 h1:tvDr/iQoUqNdohiYm0LmmKcBk+q86lb9EprIUFhHHGg= golang.org/x/tools v0.19.0/go.mod h1:qoJWxmGSIBmAeriMx19ogtrEPrGtDbPK634QFIcLAhc= google.golang.org/api v0.174.0/go.mod h1:aC7tB6j0HR1Nl0ni5ghpx6iLasmAX78Zkh/wgxAAjLg= +google.golang.org/api v0.205.0/go.mod h1:NrK1EMqO8Xk6l6QwRAmrXXg2v6dzukhlOyvkYtnvUuc= google.golang.org/genproto v0.0.0-20230725213213-b022f6e96895/go.mod h1:0ggbjUrZYpy1q+ANUS30SEoGZ53cdfwtbuG7Ptgy108= +google.golang.org/genproto v0.0.0-20241021214115-324edc3d5d38/go.mod h1:xBI+tzfqGGN2JBeSebfKXFSdBpWVQ7sLW40PTupVRm4= google.golang.org/genproto/googleapis/api v0.0.0-20230725213213-b022f6e96895/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= google.golang.org/genproto/googleapis/api v0.0.0-20240515191416-fc5f0ca64291/go.mod h1:RGnPtTG7r4i8sPlNyDeikXF99hMM+hN6QMm4ooG9g2g= google.golang.org/genproto/googleapis/api v0.0.0-20240930140551-af27646dc61f/go.mod h1:CLGoBuH1VHxAUXVPP8FfPwPEVJB6lz3URE5mY2SuayE= +google.golang.org/genproto/googleapis/api v0.0.0-20241015192408-796eee8c2d53/go.mod h1:riSXTwQ4+nqmPGtobMFyW5FqVAmIs0St6VPp4Ug7CE4= google.golang.org/genproto/googleapis/bytestream v0.0.0-20231120223509-83a465c0220f/go.mod h1:iIgEblxoG4klcXsG0d9cpoxJ4xndv6+1FkDROCHhPRI= google.golang.org/genproto/googleapis/bytestream v0.0.0-20240102182953-50ed04b92917/go.mod h1:O9TvT7A9NLgdqqF0JJXJ+axpaoYiEb8txGmkvy+AvLc= google.golang.org/genproto/googleapis/bytestream v0.0.0-20240513163218-0867130af1f8/go.mod h1:RCpt0+3mpEDPldc32vXBM8ADXlFL95T8Chxx0nv0/zE= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20241015192408-796eee8c2d53/go.mod h1:T8O3fECQbif8cez15vxAcjbwXxvL2xbnvbQ7ZfiMAMs= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20241021214115-324edc3d5d38/go.mod h1:T8O3fECQbif8cez15vxAcjbwXxvL2xbnvbQ7ZfiMAMs= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20241113202542-65e8d215514f/go.mod h1:T8O3fECQbif8cez15vxAcjbwXxvL2xbnvbQ7ZfiMAMs= google.golang.org/genproto/googleapis/rpc v0.0.0-20230725213213-b022f6e96895/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= google.golang.org/grpc v1.67.0/go.mod h1:1gLDyUQU7CTLJI90u3nXZ9ekeghjeM7pTDZlqFNg2AA= sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8= diff --git a/storage/go.mod b/storage/go.mod index 19c4884942bb..78097966e308 100644 --- a/storage/go.mod +++ b/storage/go.mod @@ -20,9 +20,9 @@ require ( go.opentelemetry.io/otel/sdk/metric v1.29.0 golang.org/x/oauth2 v0.24.0 golang.org/x/sync v0.9.0 - google.golang.org/api v0.208.0 - google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f - google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 + google.golang.org/api v0.210.0 + google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 + google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f google.golang.org/grpc v1.67.1 google.golang.org/grpc/stats/opentelemetry v0.0.0-20240907200651-3ffb98b2c93a google.golang.org/protobuf v1.35.2 @@ -30,8 +30,8 @@ require ( require ( cel.dev/expr v0.16.1 // indirect - cloud.google.com/go/auth v0.10.2 // indirect - cloud.google.com/go/auth/oauth2adapt v0.2.5 // indirect + cloud.google.com/go/auth v0.11.0 // indirect + cloud.google.com/go/auth/oauth2adapt v0.2.6 // indirect cloud.google.com/go/monitoring v1.21.2 // indirect github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1 // indirect github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect @@ -58,5 +58,5 @@ require ( golang.org/x/sys v0.27.0 // indirect golang.org/x/text v0.20.0 // indirect golang.org/x/time v0.8.0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 // indirect ) diff --git a/storage/go.sum b/storage/go.sum index 1e8daba1c6f8..d400ffa2e6b0 100644 --- a/storage/go.sum +++ b/storage/go.sum @@ -3,10 +3,10 @@ cel.dev/expr v0.16.1/go.mod h1:AsGA5zb3WruAEQeQng1RZdGEXmBj0jvMWh6l5SnNuC8= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.116.0 h1:B3fRrSDkLRt5qSHWe40ERJvhvnQwdZiHu0bJOpldweE= cloud.google.com/go v0.116.0/go.mod h1:cEPSRWPzZEswwdr9BxE6ChEn01dWlTaF05LiC2Xs70U= -cloud.google.com/go/auth v0.10.2 h1:oKF7rgBfSHdp/kuhXtqU/tNDr0mZqhYbEh+6SiqzkKo= -cloud.google.com/go/auth v0.10.2/go.mod h1:xxA5AqpDrvS+Gkmo9RqrGGRh6WSNKKOXhY3zNOr38tI= -cloud.google.com/go/auth/oauth2adapt v0.2.5 h1:2p29+dePqsCHPP1bqDJcKj4qxRyYCcbzKpFyKGt3MTk= -cloud.google.com/go/auth/oauth2adapt v0.2.5/go.mod h1:AlmsELtlEBnaNTL7jCj8VQFLy6mbZv0s4Q7NGBeQ5E8= +cloud.google.com/go/auth v0.11.0 h1:Ic5SZz2lsvbYcWT5dfjNWgw6tTlGi2Wc8hyQSC9BstA= +cloud.google.com/go/auth v0.11.0/go.mod h1:xxA5AqpDrvS+Gkmo9RqrGGRh6WSNKKOXhY3zNOr38tI= +cloud.google.com/go/auth/oauth2adapt v0.2.6 h1:V6a6XDu2lTwPZWOawrAa9HUK+DB2zfJyTuciBG5hFkU= +cloud.google.com/go/auth/oauth2adapt v0.2.6/go.mod h1:AlmsELtlEBnaNTL7jCj8VQFLy6mbZv0s4Q7NGBeQ5E8= cloud.google.com/go/compute/metadata v0.5.2 h1:UxK4uu/Tn+I3p2dYWTfiX4wva7aYlKixAHn3fyqngqo= cloud.google.com/go/compute/metadata v0.5.2/go.mod h1:C66sj2AluDcIqakBq/M8lw8/ybHgOZqin2obFxa/E5k= cloud.google.com/go/iam v1.2.2 h1:ozUSofHUGf/F4tCNy/mu9tHLTaxZFLOUiKzjcgWHGIA= @@ -167,19 +167,19 @@ golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3 golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/api v0.208.0 h1:8Y62MUGRviQnnP9/41/bYAGySPKAN9iwzV96ZvhwyVE= -google.golang.org/api v0.208.0/go.mod h1:I53S168Yr/PNDNMi5yPnDc0/LGRZO6o7PoEbl/HY3CM= +google.golang.org/api v0.210.0 h1:HMNffZ57OoZCRYSbdWVRoqOa8V8NIHLL0CzdBPLztWk= +google.golang.org/api v0.210.0/go.mod h1:B9XDZGnx2NtyjzVkOVTGrFSAVZgPcbedzKg/gTLwqBs= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f h1:zDoHYmMzMacIdjNe+P2XiTmPsLawi/pCbSPfxt6lTfw= -google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f/go.mod h1:Q5m6g8b5KaFFzsQFIGdJkSJDGeJiybVenoYFMMa3ohI= -google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 h1:M0KvPgPmDZHPlbRbaNU1APr28TvwvvdUPlSv7PUvy8g= -google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28/go.mod h1:dguCy7UOdZhTvLzDyt15+rOrawrpM4q7DD9dQ1P11P4= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f h1:C1QccEa9kUwvMgEUORqQD9S17QesQijxjZ84sO82mfo= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= +google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 h1:ToEetK57OidYuqD4Q5w+vfEnPvPpuTwedCNVohYJfNk= +google.golang.org/genproto v0.0.0-20241118233622-e639e219e697/go.mod h1:JJrvXBWRZaFMxBufik1a4RpFw4HhgVtBBWQeQgUj2cc= +google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f h1:M65LEviCfuZTfrfzwwEoxVtgvfkFkBUbFnRbxCXuXhU= +google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f/go.mod h1:Yo94eF2nj7igQt+TiJ49KxjIH8ndLYPZMIRSiRcEbg0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 h1:LWZqQOEjDyONlF1H6afSWpAL/znlREo2tHfLoe+8LMA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697/go.mod h1:5uTbfoYQed2U9p3KIj2/Zzm02PYhndfdmML0qC3q3FU= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= From 89ff76ab718db45b7acc5227a90ae102c43fc4dd Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Wed, 4 Dec 2024 18:26:21 +0000 Subject: [PATCH 19/21] fix presubmit test --- go.mod | 30 ++++++++++++------------- go.sum | 64 ++++++++++++++++++++++++++--------------------------- go.work.sum | 13 ++++------- 3 files changed, 51 insertions(+), 56 deletions(-) diff --git a/go.mod b/go.mod index e83aa06fbdb3..d0e999c08bb4 100644 --- a/go.mod +++ b/go.mod @@ -6,25 +6,25 @@ require ( cloud.google.com/go/storage v1.43.0 github.com/google/go-cmp v0.6.0 github.com/google/martian/v3 v3.3.3 - github.com/googleapis/gax-go/v2 v2.14.0 + github.com/googleapis/gax-go/v2 v2.13.0 go.opencensus.io v0.24.0 go.opentelemetry.io/otel v1.29.0 go.opentelemetry.io/otel/sdk v1.29.0 go.opentelemetry.io/otel/trace v1.29.0 - golang.org/x/oauth2 v0.24.0 - google.golang.org/api v0.210.0 - google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 - google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f - google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 + golang.org/x/oauth2 v0.23.0 + google.golang.org/api v0.203.0 + google.golang.org/genproto v0.0.0-20241015192408-796eee8c2d53 + google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 + google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 google.golang.org/grpc v1.67.1 - google.golang.org/protobuf v1.35.2 + google.golang.org/protobuf v1.35.1 ) require ( - cloud.google.com/go/auth v0.11.0 // indirect + cloud.google.com/go/auth v0.9.9 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.6 // indirect cloud.google.com/go/compute/metadata v0.5.2 // indirect - cloud.google.com/go/iam v1.2.2 // indirect + cloud.google.com/go/iam v1.2.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-logr/logr v1.4.2 // indirect github.com/go-logr/stdr v1.2.2 // indirect @@ -36,10 +36,10 @@ require ( go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect go.opentelemetry.io/otel/metric v1.29.0 // indirect - golang.org/x/crypto v0.29.0 // indirect - golang.org/x/net v0.31.0 // indirect - golang.org/x/sync v0.9.0 // indirect - golang.org/x/sys v0.27.0 // indirect - golang.org/x/text v0.20.0 // indirect - golang.org/x/time v0.8.0 // indirect + golang.org/x/crypto v0.28.0 // indirect + golang.org/x/net v0.30.0 // indirect + golang.org/x/sync v0.8.0 // indirect + golang.org/x/sys v0.26.0 // indirect + golang.org/x/text v0.19.0 // indirect + golang.org/x/time v0.7.0 // indirect ) diff --git a/go.sum b/go.sum index 561f251527c7..0da504bc22aa 100644 --- a/go.sum +++ b/go.sum @@ -1,14 +1,14 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go/auth v0.11.0 h1:Ic5SZz2lsvbYcWT5dfjNWgw6tTlGi2Wc8hyQSC9BstA= -cloud.google.com/go/auth v0.11.0/go.mod h1:xxA5AqpDrvS+Gkmo9RqrGGRh6WSNKKOXhY3zNOr38tI= +cloud.google.com/go/auth v0.9.9 h1:BmtbpNQozo8ZwW2t7QJjnrQtdganSdmqeIBxHxNkEZQ= +cloud.google.com/go/auth v0.9.9/go.mod h1:xxA5AqpDrvS+Gkmo9RqrGGRh6WSNKKOXhY3zNOr38tI= cloud.google.com/go/auth/oauth2adapt v0.2.6 h1:V6a6XDu2lTwPZWOawrAa9HUK+DB2zfJyTuciBG5hFkU= cloud.google.com/go/auth/oauth2adapt v0.2.6/go.mod h1:AlmsELtlEBnaNTL7jCj8VQFLy6mbZv0s4Q7NGBeQ5E8= cloud.google.com/go/compute/metadata v0.5.2 h1:UxK4uu/Tn+I3p2dYWTfiX4wva7aYlKixAHn3fyqngqo= cloud.google.com/go/compute/metadata v0.5.2/go.mod h1:C66sj2AluDcIqakBq/M8lw8/ybHgOZqin2obFxa/E5k= -cloud.google.com/go/iam v1.2.2 h1:ozUSofHUGf/F4tCNy/mu9tHLTaxZFLOUiKzjcgWHGIA= -cloud.google.com/go/iam v1.2.2/go.mod h1:0Ys8ccaZHdI1dEUilwzqng/6ps2YB6vRsjIe00/+6JY= -cloud.google.com/go/longrunning v0.6.2 h1:xjDfh1pQcWPEvnfjZmwjKQEcHnpz6lHjfy7Fo0MK+hc= -cloud.google.com/go/longrunning v0.6.2/go.mod h1:k/vIs83RN4bE3YCswdXC5PFfWVILjm3hpEUlSko4PiI= +cloud.google.com/go/iam v1.2.1 h1:QFct02HRb7H12J/3utj0qf5tobFh9V4vR6h9eX5EBRU= +cloud.google.com/go/iam v1.2.1/go.mod h1:3VUIJDPpwT6p/amXRC5GY8fCCh70lxPygguVtI0Z4/g= +cloud.google.com/go/longrunning v0.6.1 h1:lOLTFxYpr8hcRtcwWir5ITh1PAKUD/sG2lKrTSYjyMc= +cloud.google.com/go/longrunning v0.6.1/go.mod h1:nHISoOZpBcmlwbJmiVk5oDRz0qG/ZxPynEGs1iZ79s0= cloud.google.com/go/storage v1.43.0 h1:CcxnSohZwizt4LCzQHWvBf1/kvtHUn7gk9QERXPyXFs= cloud.google.com/go/storage v1.43.0/go.mod h1:ajvxEa7WmZS1PxvKRq4bq0tFT3vMd502JwstCcYv0Q0= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= @@ -64,8 +64,8 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/enterprise-certificate-proxy v0.3.4 h1:XYIDZApgAnrN1c855gTgghdIA6Stxb52D5RnLI1SLyw= github.com/googleapis/enterprise-certificate-proxy v0.3.4/go.mod h1:YKe7cfqYXjKGpGvmSg28/fFvhNzinZQm8DGnaburhGA= -github.com/googleapis/gax-go/v2 v2.14.0 h1:f+jMrjBPl+DL9nI4IQzLUxMq7XrAqFYB7hBPqMNIe8o= -github.com/googleapis/gax-go/v2 v2.14.0/go.mod h1:lhBCnjdLrWRaPvLWhmc8IS24m9mr07qSYnHncrgo+zk= +github.com/googleapis/gax-go/v2 v2.13.0 h1:yitjD5f7jQHhyDsnhKEBU52NdvvdSeGzlAnDPT0hH1s= +github.com/googleapis/gax-go/v2 v2.13.0/go.mod h1:Z/fvTZXF8/uw7Xu5GuslPw+bplx6SS338j1Is2S+B7A= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= @@ -93,8 +93,8 @@ go.opentelemetry.io/otel/trace v1.29.0 h1:J/8ZNK4XgR7a21DZUAsbF8pZ5Jcw1VhACmnYt3 go.opentelemetry.io/otel/trace v1.29.0/go.mod h1:eHl3w0sp3paPkYstJOmAimxhiFXPg+MMTlEh3nsQgWQ= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.29.0 h1:L5SG1JTTXupVV3n6sUqMTeWbjAyfPwoda2DLX8J8FrQ= -golang.org/x/crypto v0.29.0/go.mod h1:+F4F4N5hv6v38hfeYwTdx20oUvLLc+QfrE9Ax9HtgRg= +golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw= +golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= @@ -105,47 +105,47 @@ golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.31.0 h1:68CPQngjLL0r2AlUKiSxtQFKvzRVbnzLwMUn5SzcLHo= -golang.org/x/net v0.31.0/go.mod h1:P4fl1q7dY2hnZFxEk4pPSkDHF+QqjitcnDjUQyMM+pM= +golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4= +golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE= -golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= +golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs= +golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.9.0 h1:fEo0HyrW1GIgZdpbhCRO0PkJajUS5H9IFUztCgEo2jQ= -golang.org/x/sync v0.9.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= +golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s= -golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo= +golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug= -golang.org/x/text v0.20.0/go.mod h1:D4IsuqiFMhST5bX19pQ9ikHC2GsaKyk/oF+pn3ducp4= -golang.org/x/time v0.8.0 h1:9i3RxcPv3PZnitoVGMPDKZSq1xW1gK1Xy3ArNOGZfEg= -golang.org/x/time v0.8.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= +golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM= +golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= +golang.org/x/time v0.7.0 h1:ntUhktv3OPE6TgYxXWv9vKvUSJyIFJlyohwbkEwPrKQ= +golang.org/x/time v0.7.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/api v0.210.0 h1:HMNffZ57OoZCRYSbdWVRoqOa8V8NIHLL0CzdBPLztWk= -google.golang.org/api v0.210.0/go.mod h1:B9XDZGnx2NtyjzVkOVTGrFSAVZgPcbedzKg/gTLwqBs= +google.golang.org/api v0.203.0 h1:SrEeuwU3S11Wlscsn+LA1kb/Y5xT8uggJSkIhD08NAU= +google.golang.org/api v0.203.0/go.mod h1:BuOVyCSYEPwJb3npWvDnNmFI92f3GeRnHNkETneT3SI= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 h1:ToEetK57OidYuqD4Q5w+vfEnPvPpuTwedCNVohYJfNk= -google.golang.org/genproto v0.0.0-20241118233622-e639e219e697/go.mod h1:JJrvXBWRZaFMxBufik1a4RpFw4HhgVtBBWQeQgUj2cc= -google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f h1:M65LEviCfuZTfrfzwwEoxVtgvfkFkBUbFnRbxCXuXhU= -google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f/go.mod h1:Yo94eF2nj7igQt+TiJ49KxjIH8ndLYPZMIRSiRcEbg0= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 h1:LWZqQOEjDyONlF1H6afSWpAL/znlREo2tHfLoe+8LMA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697/go.mod h1:5uTbfoYQed2U9p3KIj2/Zzm02PYhndfdmML0qC3q3FU= +google.golang.org/genproto v0.0.0-20241015192408-796eee8c2d53 h1:Df6WuGvthPzc+JiQ/G+m+sNX24kc0aTBqoDN/0yyykE= +google.golang.org/genproto v0.0.0-20241015192408-796eee8c2d53/go.mod h1:fheguH3Am2dGp1LfXkrvwqC/KlFq8F0nLq3LryOMrrE= +google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 h1:T6rh4haD3GVYsgEfWExoCZA2o2FmbNyKpTuAxbEFPTg= +google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9/go.mod h1:wp2WsuBYj6j8wUdo3ToZsdxxixbvQNAHqVJrTgi5E5M= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 h1:X58yt85/IXCx0Y3ZwN6sEIKZzQtDEYaBWrDvErdXrRE= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= @@ -162,8 +162,8 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -google.golang.org/protobuf v1.35.2 h1:8Ar7bF+apOIoThw1EdZl0p1oWvMqTHmpA2fRTyZO8io= -google.golang.org/protobuf v1.35.2/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= +google.golang.org/protobuf v1.35.1 h1:m3LfL6/Ca+fqnjnlqQXNpFPABW1UD7mjh8KO2mKFytA= +google.golang.org/protobuf v1.35.1/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/go.work.sum b/go.work.sum index 0a60a6e6f10b..638d2e1acde0 100644 --- a/go.work.sum +++ b/go.work.sum @@ -1,5 +1,4 @@ cloud.google.com/go/auth v0.2.0/go.mod h1:+yb+oy3/P0geX6DLKlqiGHARGR6EX2GRtYCzWOCQSbU= -cloud.google.com/go/auth v0.10.1/go.mod h1:xxA5AqpDrvS+Gkmo9RqrGGRh6WSNKKOXhY3zNOr38tI= cloud.google.com/go/auth/oauth2adapt v0.2.0/go.mod h1:AfqujpDAlTfLfeCIl/HJZZlIxD8+nJoZ5e0x1IxGq5k= cloud.google.com/go/dataproc v1.12.0 h1:W47qHL3W4BPkAIbk4SWmIERwsWBaNnWm0P2sdx3YgGU= cloud.google.com/go/gaming v1.9.0 h1:7vEhFnZmd931Mo7sZ6pJy7uQPDxF7m7v8xtBheG08tc= @@ -32,6 +31,7 @@ github.com/fullstorydev/grpcurl v1.8.7/go.mod h1:pVtM4qe3CMoLaIzYS8uvTuDj2jVYmXq github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM= github.com/gobwas/pool v0.2.1/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= github.com/gobwas/ws v1.2.1/go.mod h1:hRKAFb8wOxFROYNsT1bqfWnhX+b5MFeJM9r2ZSwg/KY= +github.com/golang/glog v1.2.2/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w= github.com/golang/mock v1.7.0-rc.1 h1:YojYx61/OLFsiv6Rw1Z96LpldJIy31o+UHmwAUMJ6/U= github.com/google/go-jsonnet v0.20.0/go.mod h1:VbgWF9JX7ztlv770x/TolZNGGFfiHEVx9G6ca2eUmeA= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= @@ -71,25 +71,20 @@ golang.org/x/mod v0.9.0 h1:KENHtAZL2y3NLMYZeHY9DW8HW8V+kQyJsY/V9JlKvCs= golang.org/x/mod v0.11.0 h1:bUO06HqtnRcc/7l71XBe4WcqTZ+3AH1J59zWDDwLKgU= golang.org/x/mod v0.16.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/telemetry v0.0.0-20240208230135-b75ee8823808/go.mod h1:KG1lNk5ZFNssSZLrpVb4sMXKMpGwGXOxSG3rnu2gZQQ= -golang.org/x/term v0.26.0/go.mod h1:Si5m1o57C5nBNQo5z1iq+XDijt21BDBDp2bK0QI8e3E= +golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M= golang.org/x/tools v0.7.0 h1:W4OVu8VVOaIO0yzWMNdepAulS7YfoS3Zabrm8DOXXU4= golang.org/x/tools v0.10.0 h1:tvDr/iQoUqNdohiYm0LmmKcBk+q86lb9EprIUFhHHGg= golang.org/x/tools v0.19.0/go.mod h1:qoJWxmGSIBmAeriMx19ogtrEPrGtDbPK634QFIcLAhc= google.golang.org/api v0.174.0/go.mod h1:aC7tB6j0HR1Nl0ni5ghpx6iLasmAX78Zkh/wgxAAjLg= -google.golang.org/api v0.205.0/go.mod h1:NrK1EMqO8Xk6l6QwRAmrXXg2v6dzukhlOyvkYtnvUuc= google.golang.org/genproto v0.0.0-20230725213213-b022f6e96895/go.mod h1:0ggbjUrZYpy1q+ANUS30SEoGZ53cdfwtbuG7Ptgy108= -google.golang.org/genproto v0.0.0-20241021214115-324edc3d5d38/go.mod h1:xBI+tzfqGGN2JBeSebfKXFSdBpWVQ7sLW40PTupVRm4= google.golang.org/genproto/googleapis/api v0.0.0-20230725213213-b022f6e96895/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= google.golang.org/genproto/googleapis/api v0.0.0-20240515191416-fc5f0ca64291/go.mod h1:RGnPtTG7r4i8sPlNyDeikXF99hMM+hN6QMm4ooG9g2g= google.golang.org/genproto/googleapis/api v0.0.0-20240930140551-af27646dc61f/go.mod h1:CLGoBuH1VHxAUXVPP8FfPwPEVJB6lz3URE5mY2SuayE= -google.golang.org/genproto/googleapis/api v0.0.0-20241015192408-796eee8c2d53/go.mod h1:riSXTwQ4+nqmPGtobMFyW5FqVAmIs0St6VPp4Ug7CE4= google.golang.org/genproto/googleapis/bytestream v0.0.0-20231120223509-83a465c0220f/go.mod h1:iIgEblxoG4klcXsG0d9cpoxJ4xndv6+1FkDROCHhPRI= google.golang.org/genproto/googleapis/bytestream v0.0.0-20240102182953-50ed04b92917/go.mod h1:O9TvT7A9NLgdqqF0JJXJ+axpaoYiEb8txGmkvy+AvLc= google.golang.org/genproto/googleapis/bytestream v0.0.0-20240513163218-0867130af1f8/go.mod h1:RCpt0+3mpEDPldc32vXBM8ADXlFL95T8Chxx0nv0/zE= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20241021214115-324edc3d5d38/go.mod h1:T8O3fECQbif8cez15vxAcjbwXxvL2xbnvbQ7ZfiMAMs= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20241113202542-65e8d215514f/go.mod h1:T8O3fECQbif8cez15vxAcjbwXxvL2xbnvbQ7ZfiMAMs= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20241015192408-796eee8c2d53/go.mod h1:T8O3fECQbif8cez15vxAcjbwXxvL2xbnvbQ7ZfiMAMs= google.golang.org/genproto/googleapis/rpc v0.0.0-20230725213213-b022f6e96895/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= google.golang.org/grpc v1.67.0/go.mod h1:1gLDyUQU7CTLJI90u3nXZ9ekeghjeM7pTDZlqFNg2AA= sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8= From 17cc9c99a73bab2d1dacc3ef4acf716c3110ec0a Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Wed, 4 Dec 2024 18:55:05 +0000 Subject: [PATCH 20/21] empty commit From 61fa7ec4c7bbe04442d308dfef9ff286cebd9518 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Wed, 4 Dec 2024 18:58:47 +0000 Subject: [PATCH 21/21] trigger test