2022-09-06 19:15:07 +00:00
|
|
|
package services
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
2022-09-12 22:47:27 +00:00
|
|
|
"github.com/google/uuid"
|
2022-09-06 19:15:07 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestItemService_CsvImport(t *testing.T) {
|
|
|
|
data := loadcsv()
|
|
|
|
svc := &ItemService{
|
|
|
|
repo: tRepos,
|
|
|
|
}
|
|
|
|
err := svc.CsvImport(context.Background(), tGroup.ID, data)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
items, err := svc.GetAll(context.Background(), tGroup.ID)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
t.Cleanup(func() {
|
|
|
|
for _, item := range items {
|
|
|
|
err := svc.repo.Items.Delete(context.Background(), item.ID)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
assert.Equal(t, len(items), 6)
|
|
|
|
|
|
|
|
dataCsv := []csvRow{}
|
|
|
|
for _, item := range data {
|
|
|
|
dataCsv = append(dataCsv, newCsvRow(item))
|
|
|
|
}
|
|
|
|
|
|
|
|
locationService := &LocationService{
|
|
|
|
repos: tRepos,
|
|
|
|
}
|
|
|
|
|
|
|
|
LabelService := &LabelService{
|
|
|
|
repos: tRepos,
|
|
|
|
}
|
|
|
|
|
|
|
|
allLocation, err := locationService.GetAll(context.Background(), tGroup.ID)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
locNames := []string{}
|
|
|
|
for _, loc := range allLocation {
|
|
|
|
locNames = append(locNames, loc.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
allLabels, err := LabelService.GetAll(context.Background(), tGroup.ID)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
labelNames := []string{}
|
|
|
|
for _, label := range allLabels {
|
|
|
|
labelNames = append(labelNames, label.Name)
|
|
|
|
}
|
|
|
|
|
2022-09-12 22:47:27 +00:00
|
|
|
ids := []uuid.UUID{}
|
|
|
|
t.Cleanup((func() {
|
|
|
|
for _, id := range ids {
|
|
|
|
err := svc.repo.Items.Delete(context.Background(), id)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
}))
|
|
|
|
|
2022-09-06 19:15:07 +00:00
|
|
|
for _, item := range items {
|
|
|
|
assert.Contains(t, locNames, item.Location.Name)
|
|
|
|
for _, label := range item.Labels {
|
|
|
|
assert.Contains(t, labelNames, label.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, csvRow := range dataCsv {
|
2022-09-13 04:54:30 +00:00
|
|
|
if csvRow.Item.Name == item.Name {
|
|
|
|
assert.Equal(t, csvRow.Item.Description, item.Description)
|
|
|
|
assert.Equal(t, csvRow.Item.SerialNumber, item.SerialNumber)
|
|
|
|
assert.Equal(t, csvRow.Item.Manufacturer, item.Manufacturer)
|
|
|
|
assert.Equal(t, csvRow.Item.Notes, item.Notes)
|
2022-09-06 19:15:07 +00:00
|
|
|
|
|
|
|
// Purchase Fields
|
2022-09-13 04:54:30 +00:00
|
|
|
assert.Equal(t, csvRow.Item.PurchaseTime, item.PurchaseTime)
|
|
|
|
assert.Equal(t, csvRow.Item.PurchaseFrom, item.PurchaseFrom)
|
|
|
|
assert.Equal(t, csvRow.Item.PurchasePrice, item.PurchasePrice)
|
2022-09-06 19:15:07 +00:00
|
|
|
|
|
|
|
// Sold Fields
|
2022-09-13 04:54:30 +00:00
|
|
|
assert.Equal(t, csvRow.Item.SoldTime, item.SoldTime)
|
|
|
|
assert.Equal(t, csvRow.Item.SoldTo, item.SoldTo)
|
|
|
|
assert.Equal(t, csvRow.Item.SoldPrice, item.SoldPrice)
|
2022-09-06 19:15:07 +00:00
|
|
|
}
|
|
|
|
}
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
}
|