Take in information about retention so that when the repo is initialized we can configure retention Not currently exposed by CLI layer **Requires changing the interface for repo init so SDK consumers will require changes** --- #### Does this PR need a docs update or release note? - [ ] ✅ Yes, it's included - [ ] 🕐 Yes, but in a later PR - [x] ⛔ No #### Type of change - [x] 🌻 Feature - [ ] 🐛 Bugfix - [ ] 🗺️ Documentation - [ ] 🤖 Supportability/Tests - [ ] 💻 CI/Deployment - [ ] 🧹 Tech Debt/Cleanup #### Issue(s) * #3519 #### Test Plan - [ ] 💪 Manual - [x] ⚡ Unit test - [ ] 💚 E2E
279 lines
6.2 KiB
Go
279 lines
6.2 KiB
Go
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"
|
|
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)
|
|
cfg, err := st.S3Config()
|
|
require.NoError(t, err, clues.ToCore(err))
|
|
|
|
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)
|
|
cfg, err := st.S3Config()
|
|
require.NoError(t, err, clues.ToCore(err))
|
|
|
|
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)
|
|
cfg, err := st.S3Config()
|
|
require.NoError(t, err, clues.ToCore(err))
|
|
|
|
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)
|
|
cfg, err := st.S3Config()
|
|
require.NoError(t, err, clues.ToCore(err))
|
|
|
|
force := map[string]string{
|
|
tconfig.TestCfgAccountProvider: "M365",
|
|
tconfig.TestCfgStorageProvider: "S3",
|
|
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)
|
|
cfg, err := st.S3Config()
|
|
require.NoError(t, err, clues.ToCore(err))
|
|
|
|
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)
|
|
cfg, err := st.S3Config()
|
|
require.NoError(t, err, clues.ToCore(err))
|
|
|
|
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))
|
|
}
|