package repo_test import ( "os" "testing" "github.com/alcionai/clues" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" "github.com/alcionai/corso/src/cli" "github.com/alcionai/corso/src/cli/config" cliTD "github.com/alcionai/corso/src/cli/testdata" "github.com/alcionai/corso/src/internal/tester" "github.com/alcionai/corso/src/internal/tester/tconfig" "github.com/alcionai/corso/src/pkg/account" "github.com/alcionai/corso/src/pkg/control" ctrlRepo "github.com/alcionai/corso/src/pkg/control/repository" "github.com/alcionai/corso/src/pkg/repository" "github.com/alcionai/corso/src/pkg/storage" storeTD "github.com/alcionai/corso/src/pkg/storage/testdata" ) type S3E2ESuite struct { tester.Suite } func TestS3E2ESuite(t *testing.T) { suite.Run(t, &S3E2ESuite{Suite: tester.NewE2ESuite( t, [][]string{storeTD.AWSStorageCredEnvs, tconfig.M365AcctCredEnvs})}) } func (suite *S3E2ESuite) TestInitS3Cmd() { table := []struct { name string bucketPrefix string hasConfigFile bool }{ { name: "NoPrefix", bucketPrefix: "", hasConfigFile: true, }, { name: "S3Prefix", bucketPrefix: "s3://", hasConfigFile: true, }, { name: "NoConfigFile", bucketPrefix: "", hasConfigFile: false, }, } for _, test := range table { suite.Run(test.name, func() { t := suite.T() ctx, flush := tester.NewContext(t) defer flush() st := storeTD.NewPrefixedS3Storage(t) sc, err := st.StorageConfig() require.NoError(t, err, clues.ToCore(err)) cfg := sc.(*storage.S3Config) vpr, configFP := tconfig.MakeTempTestConfigClone(t, nil) if !test.hasConfigFile { // Ideally we could use `/dev/null`, but you need a // toml file plus this works cross platform os.Remove(configFP) } ctx = config.SetViper(ctx, vpr) cmd := cliTD.StubRootCmd( "repo", "init", "s3", "--config-file", configFP, "--bucket", test.bucketPrefix+cfg.Bucket, "--prefix", cfg.Prefix) cli.BuildCommandTree(cmd) // run the command err = cmd.ExecuteContext(ctx) require.NoError(t, err, clues.ToCore(err)) // a second initialization should result in an error err = cmd.ExecuteContext(ctx) assert.ErrorIs(t, err, repository.ErrorRepoAlreadyExists, clues.ToCore(err)) }) } } func (suite *S3E2ESuite) TestInitMultipleTimes() { t := suite.T() ctx, flush := tester.NewContext(t) defer flush() st := storeTD.NewPrefixedS3Storage(t) sc, err := st.StorageConfig() require.NoError(t, err, clues.ToCore(err)) cfg := sc.(*storage.S3Config) vpr, configFP := tconfig.MakeTempTestConfigClone(t, nil) ctx = config.SetViper(ctx, vpr) for i := 0; i < 2; i++ { cmd := cliTD.StubRootCmd( "repo", "init", "s3", "--config-file", configFP, "--bucket", cfg.Bucket, "--prefix", cfg.Prefix, "--succeed-if-exists") cli.BuildCommandTree(cmd) // run the command err = cmd.ExecuteContext(ctx) require.NoError(t, err, clues.ToCore(err)) } } func (suite *S3E2ESuite) TestInitS3Cmd_missingBucket() { t := suite.T() ctx, flush := tester.NewContext(t) defer flush() st := storeTD.NewPrefixedS3Storage(t) sc, err := st.StorageConfig() require.NoError(t, err, clues.ToCore(err)) cfg := sc.(*storage.S3Config) force := map[string]string{ tconfig.TestCfgBucket: "", } vpr, configFP := tconfig.MakeTempTestConfigClone(t, force) ctx = config.SetViper(ctx, vpr) cmd := cliTD.StubRootCmd( "repo", "init", "s3", "--config-file", configFP, "--prefix", cfg.Prefix) cli.BuildCommandTree(cmd) // run the command err = cmd.ExecuteContext(ctx) require.Error(t, err, clues.ToCore(err)) } func (suite *S3E2ESuite) TestConnectS3Cmd() { table := []struct { name string bucketPrefix string hasConfigFile bool }{ { name: "NoPrefix", bucketPrefix: "", hasConfigFile: true, }, { name: "S3Prefix", bucketPrefix: "s3://", hasConfigFile: true, }, { name: "NoConfigFile", bucketPrefix: "", hasConfigFile: false, }, } for _, test := range table { suite.Run(test.name, func() { t := suite.T() ctx, flush := tester.NewContext(t) defer flush() st := storeTD.NewPrefixedS3Storage(t) sc, err := st.StorageConfig() require.NoError(t, err, clues.ToCore(err)) cfg := sc.(*storage.S3Config) force := map[string]string{ tconfig.TestCfgAccountProvider: account.ProviderM365.String(), tconfig.TestCfgStorageProvider: storage.ProviderS3.String(), tconfig.TestCfgPrefix: cfg.Prefix, } vpr, configFP := tconfig.MakeTempTestConfigClone(t, force) if !test.hasConfigFile { // Ideally we could use `/dev/null`, but you need a // toml file plus this works cross platform os.Remove(configFP) } ctx = config.SetViper(ctx, vpr) // init the repo first _, err = repository.Initialize( ctx, account.Account{}, st, control.DefaultOptions(), ctrlRepo.Retention{}) require.NoError(t, err, clues.ToCore(err)) // then test it cmd := cliTD.StubRootCmd( "repo", "connect", "s3", "--config-file", configFP, "--bucket", test.bucketPrefix+cfg.Bucket, "--prefix", cfg.Prefix) cli.BuildCommandTree(cmd) // run the command err = cmd.ExecuteContext(ctx) require.NoError(t, err, clues.ToCore(err)) }) } } func (suite *S3E2ESuite) TestConnectS3Cmd_BadBucket() { t := suite.T() ctx, flush := tester.NewContext(t) defer flush() st := storeTD.NewPrefixedS3Storage(t) sc, err := st.StorageConfig() require.NoError(t, err, clues.ToCore(err)) cfg := sc.(*storage.S3Config) vpr, configFP := tconfig.MakeTempTestConfigClone(t, nil) ctx = config.SetViper(ctx, vpr) cmd := cliTD.StubRootCmd( "repo", "connect", "s3", "--config-file", configFP, "--bucket", "wrong", "--prefix", cfg.Prefix) cli.BuildCommandTree(cmd) // run the command err = cmd.ExecuteContext(ctx) require.Error(t, err, clues.ToCore(err)) } func (suite *S3E2ESuite) TestConnectS3Cmd_BadPrefix() { t := suite.T() ctx, flush := tester.NewContext(t) defer flush() st := storeTD.NewPrefixedS3Storage(t) sc, err := st.StorageConfig() require.NoError(t, err, clues.ToCore(err)) cfg := sc.(*storage.S3Config) vpr, configFP := tconfig.MakeTempTestConfigClone(t, nil) ctx = config.SetViper(ctx, vpr) cmd := cliTD.StubRootCmd( "repo", "connect", "s3", "--config-file", configFP, "--bucket", cfg.Bucket, "--prefix", "wrong") cli.BuildCommandTree(cmd) // run the command err = cmd.ExecuteContext(ctx) require.Error(t, err, clues.ToCore(err)) }