## 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 - [ ] 🌻 Feature - [ ] 🐛 Bugfix - [ ] 🗺️ Documentation - [x] 🤖 Test - [ ] 💻 CI/Deployment - [x] 🧹 Tech Debt/Cleanup ## Issue(s) * #2373 ## Test Plan - [x] 💪 Manual - [ ] ⚡ Unit test - [ ] 💚 E2E
88 lines
1.9 KiB
Go
88 lines
1.9 KiB
Go
package utils
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/alcionai/corso/src/internal/tester"
|
|
"github.com/alcionai/corso/src/pkg/selectors"
|
|
)
|
|
|
|
type CliUtilsSuite struct {
|
|
tester.Suite
|
|
}
|
|
|
|
func TestCliUtilsSuite(t *testing.T) {
|
|
suite.Run(t, &CliUtilsSuite{Suite: tester.NewUnitSuite(t)})
|
|
}
|
|
|
|
func (suite *CliUtilsSuite) TestRequireProps() {
|
|
table := []struct {
|
|
name string
|
|
props map[string]string
|
|
errCheck assert.ErrorAssertionFunc
|
|
}{
|
|
{
|
|
props: map[string]string{"exists": "I have seen the fnords!"},
|
|
errCheck: assert.NoError,
|
|
},
|
|
{
|
|
props: map[string]string{"not-exists": ""},
|
|
errCheck: assert.Error,
|
|
},
|
|
}
|
|
for _, test := range table {
|
|
test.errCheck(suite.T(), RequireProps(test.props))
|
|
}
|
|
}
|
|
|
|
func (suite *CliUtilsSuite) TestSplitFoldersIntoContainsAndPrefix() {
|
|
table := []struct {
|
|
name string
|
|
input []string
|
|
expectC []string
|
|
expectP []string
|
|
}{
|
|
{
|
|
name: "empty",
|
|
expectC: selectors.Any(),
|
|
expectP: nil,
|
|
},
|
|
{
|
|
name: "only contains",
|
|
input: []string{"a", "b", "c"},
|
|
expectC: []string{"a", "b", "c"},
|
|
expectP: []string{},
|
|
},
|
|
{
|
|
name: "only leading slash counts as contains",
|
|
input: []string{"a/////", "\\/b", "\\//c\\/"},
|
|
expectC: []string{"a/////", "\\/b", "\\//c\\/"},
|
|
expectP: []string{},
|
|
},
|
|
{
|
|
name: "only prefix",
|
|
input: []string{"/a", "/b", "/\\/c"},
|
|
expectC: []string{},
|
|
expectP: []string{"/a", "/b", "/\\/c"},
|
|
},
|
|
{
|
|
name: "mixed",
|
|
input: []string{"/a", "b", "/c"},
|
|
expectC: []string{"b"},
|
|
expectP: []string{"/a", "/c"},
|
|
},
|
|
}
|
|
for _, test := range table {
|
|
suite.Run(test.name, func() {
|
|
t := suite.T()
|
|
|
|
c, p := splitFoldersIntoContainsAndPrefix(test.input)
|
|
assert.ElementsMatch(t, test.expectC, c, "contains set")
|
|
assert.ElementsMatch(t, test.expectP, p, "prefix set")
|
|
})
|
|
}
|
|
}
|