Skip to content

Commit

Permalink
Revert "gcs: remove test that asserts buckets produce not found error"
Browse files Browse the repository at this point in the history
This reverts commit 83ece20.
  • Loading branch information
jeffswenson committed Nov 18, 2024
1 parent 391e554 commit 85e22d0
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 19 deletions.
4 changes: 0 additions & 4 deletions pkg/cloud/external_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,6 @@ type SQLConnI interface {
// ErrFileDoesNotExist is a sentinel error for indicating that a specified
// bucket/object/key/file (depending on storage terminology) does not exist.
// This error is raised by the ReadFile method.
//
// On GCS, a non-existent bucket returns a 403 forbidden, so a not found is
// only returned if the bucket exists and the user has the permissions needed
// to interact with the bucket.
var ErrFileDoesNotExist = errors.New("external_storage: file doesn't exist")

// ErrListingUnsupported is a marker for indicating listing is unsupported.
Expand Down
52 changes: 37 additions & 15 deletions pkg/cloud/gcp/gcs_storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/testutils/skip"
"github.com/cockroachdb/cockroach/pkg/util/ioctx"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/errors"
"github.com/stretchr/testify/require"
"golang.org/x/oauth2/google"
)
Expand Down Expand Up @@ -326,8 +327,8 @@ func TestAntagonisticGCSRead(t *testing.T) {
cloudtestutils.CheckAntagonisticRead(t, conf, testSettings)
}

// TestFileDoesNotExist ensures that the ReadFile method of google cloud
// storage returns a sentinel error when the `Object` being read does not
// TestFileDoesNotExist ensures that the ReadFile method of google cloud storage
// returns a sentinel error when the `Bucket` or `Object` being read do not
// exist.
func TestFileDoesNotExist(t *testing.T) {
defer leaktest.AfterTest(t)()
Expand All @@ -340,20 +341,41 @@ func TestFileDoesNotExist(t *testing.T) {

testSettings := cluster.MakeTestingClusterSettings()

// Invalid gsFile.
gsFile := "gs://cockroach-fixtures-us-east1/tpch-csv/sf-1/invalid_region.tbl?AUTH=implicit"
conf, err := cloud.ExternalStorageConfFromURI(gsFile, user)
require.NoError(t, err)
{
// Invalid gsFile.
gsFile := "gs://cockroach-fixtures-us-east1/tpch-csv/sf-1/invalid_region.tbl?AUTH=implicit"
conf, err := cloud.ExternalStorageConfFromURI(gsFile, user)
require.NoError(t, err)

s, err := cloud.MakeExternalStorage(context.Background(), conf, base.ExternalIODirConfig{}, testSettings,
nil, /* blobClientFactory */
nil, /* db */
nil, /* limiters */
cloud.NilMetrics,
)
require.NoError(t, err)
_, _, err = s.ReadFile(context.Background(), "", cloud.ReadOptions{NoFileSize: true})
require.ErrorIs(t, err, cloud.ErrFileDoesNotExist)
s, err := cloud.MakeExternalStorage(context.Background(), conf, base.ExternalIODirConfig{}, testSettings,
nil, /* blobClientFactory */
nil, /* db */
nil, /* limiters */
cloud.NilMetrics,
)
require.NoError(t, err)
_, _, err = s.ReadFile(context.Background(), "", cloud.ReadOptions{NoFileSize: true})
require.Error(t, err, "")
require.True(t, errors.Is(err, cloud.ErrFileDoesNotExist))
}

{
// Invalid gsBucket.
gsFile := "gs://cockroach-fixtures-us-east1-invalid/tpch-csv/sf-1/region.tbl?AUTH=implicit"
conf, err := cloud.ExternalStorageConfFromURI(gsFile, user)
require.NoError(t, err)

s, err := cloud.MakeExternalStorage(context.Background(), conf, base.ExternalIODirConfig{}, testSettings,
nil, /* blobClientFactory */
nil, /* db */
nil, /* limiters */
cloud.NilMetrics,
)
require.NoError(t, err)
_, _, err = s.ReadFile(context.Background(), "", cloud.ReadOptions{NoFileSize: true})
require.Error(t, err, "")
require.True(t, errors.Is(err, cloud.ErrFileDoesNotExist))
}
}

func TestCompressedGCS(t *testing.T) {
Expand Down

0 comments on commit 85e22d0

Please sign in to comment.