various tidbits of data cleanup before moving forward with adding export behavior to groups. * move duplicate collections mocks into data/mock * move the export collection struct into pkg/export (to prevent future duplicates in the next PR) * rename export.Collection to Collectioner, because it's an interface. * some other non-logic rearrangement --- #### Does this PR need a docs update or release note? - [x] ⛔ No #### Type of change - [x] 🧹 Tech Debt/Cleanup #### Issue(s) * #3991 #### Test Plan - [x] ⚡ Unit test - [x] 💚 E2E
174 lines
2.9 KiB
Go
174 lines
2.9 KiB
Go
package export
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/alcionai/corso/src/internal/tester"
|
|
"github.com/alcionai/corso/src/pkg/fault"
|
|
)
|
|
|
|
type ExportE2ESuite struct {
|
|
tester.Suite
|
|
called bool
|
|
}
|
|
|
|
func TestExportE2ESuite(t *testing.T) {
|
|
suite.Run(t, &ExportE2ESuite{Suite: tester.NewE2ESuite(t, nil)})
|
|
}
|
|
|
|
func (suite *ExportE2ESuite) SetupSuite() {
|
|
suite.called = true
|
|
}
|
|
|
|
type mockExportCollection struct {
|
|
path string
|
|
items []Item
|
|
}
|
|
|
|
func (mec mockExportCollection) BasePath() string { return mec.path }
|
|
func (mec mockExportCollection) Items(context.Context) <-chan Item {
|
|
ch := make(chan Item)
|
|
|
|
go func() {
|
|
defer close(ch)
|
|
|
|
for _, item := range mec.items {
|
|
ch <- item
|
|
}
|
|
}()
|
|
|
|
return ch
|
|
}
|
|
|
|
func (suite *ExportE2ESuite) TestConsumeExportCollection() {
|
|
type ei struct {
|
|
name string
|
|
body string
|
|
}
|
|
|
|
type i struct {
|
|
path string
|
|
items []ei
|
|
}
|
|
|
|
table := []struct {
|
|
name string
|
|
cols []i
|
|
}{
|
|
{
|
|
name: "single root collection single item",
|
|
cols: []i{
|
|
{
|
|
path: "",
|
|
items: []ei{
|
|
{
|
|
name: "name1",
|
|
body: "body1",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "single root collection multiple items",
|
|
cols: []i{
|
|
{
|
|
path: "",
|
|
items: []ei{
|
|
{
|
|
name: "name1",
|
|
body: "body1",
|
|
},
|
|
{
|
|
name: "name2",
|
|
body: "body2",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "multiple collections multiple items",
|
|
cols: []i{
|
|
{
|
|
path: "",
|
|
items: []ei{
|
|
{
|
|
name: "name1",
|
|
body: "body1",
|
|
},
|
|
{
|
|
name: "name2",
|
|
body: "body2",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
path: "folder",
|
|
items: []ei{
|
|
{
|
|
name: "name3",
|
|
body: "body3",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range table {
|
|
suite.Run(test.name, func() {
|
|
t := suite.T()
|
|
|
|
ctx, flush := tester.NewContext(t)
|
|
defer flush()
|
|
|
|
ecs := []Collectioner{}
|
|
for _, col := range test.cols {
|
|
items := []Item{}
|
|
for _, item := range col.items {
|
|
items = append(items, Item{
|
|
Name: item.name,
|
|
Body: io.NopCloser((bytes.NewBufferString(item.body))),
|
|
})
|
|
}
|
|
|
|
ecs = append(ecs, mockExportCollection{
|
|
path: col.path,
|
|
items: items,
|
|
})
|
|
}
|
|
|
|
dir, err := os.MkdirTemp("", "export-test")
|
|
require.NoError(t, err)
|
|
defer os.RemoveAll(dir)
|
|
|
|
err = ConsumeExportCollections(ctx, dir, ecs, fault.New(true))
|
|
require.NoError(t, err, "writing data")
|
|
|
|
for _, col := range test.cols {
|
|
for _, item := range col.items {
|
|
f, err := os.Open(filepath.Join(dir, col.path, item.name))
|
|
require.NoError(t, err, "opening file")
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
_, err = buf.ReadFrom(f)
|
|
require.NoError(t, err, "reading file")
|
|
|
|
assert.Equal(t, item.body, buf.String(), "file contents")
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|