photoprism/internal/entity/photo_label_test.go

59 lines
1.4 KiB
Go
Raw Normal View History

package entity
2019-07-16 11:10:31 +00:00
import (
"testing"
"github.com/stretchr/testify/assert"
2019-07-16 11:10:31 +00:00
)
func TestNewPhotoLabel(t *testing.T) {
t.Run("name Christmas 2018", func(t *testing.T) {
photoLabel := NewPhotoLabel(1, 3, 80, "source")
assert.Equal(t, uint(0x1), photoLabel.PhotoID)
assert.Equal(t, uint(0x3), photoLabel.LabelID)
assert.Equal(t, 80, photoLabel.Uncertainty)
assert.Equal(t, "source", photoLabel.LabelSrc)
2019-07-16 11:10:31 +00:00
})
}
2019-12-17 17:28:07 +00:00
func TestPhotoLabel_TableName(t *testing.T) {
photoLabel := &PhotoLabel{}
tableName := photoLabel.TableName()
assert.Equal(t, "photos_labels", tableName)
}
2020-05-08 12:18:11 +00:00
func TestPhotoLabel_FirstOrCreate(t *testing.T) {
pl := LabelFixtures.PhotoLabel(1000000, "flower", 38, "image")
r := pl.FirstOrCreate()
assert.Equal(t, uint(1000000), r.PhotoID)
2020-05-08 12:18:11 +00:00
}
func TestPhotoLabel_ClassifyLabel(t *testing.T) {
t.Run("success", func(t *testing.T) {
pl := LabelFixtures.PhotoLabel(1000000, "flower", 38, "image")
r := pl.ClassifyLabel()
2020-05-08 12:18:11 +00:00
assert.Equal(t, "Flower", r.Name)
assert.Equal(t, 38, r.Uncertainty)
assert.Equal(t, "image", r.Source)
})
t.Run("label = nil", func(t *testing.T) {
photoLabel := NewPhotoLabel(1, 3, 80, "source")
assert.Panics(t, func() {
photoLabel.ClassifyLabel()
}, "photo label: label is nil")
})
}
func TestPhotoLabel_Save(t *testing.T) {
t.Run("success", func(t *testing.T) {
photoLabel := NewPhotoLabel(13, 1000, 99, "image")
err := photoLabel.Save()
if err != nil {
t.Fatal(err)
2020-05-08 12:18:11 +00:00
}
})
}