2019-12-11 16:55:18 +01:00
|
|
|
package entity
|
2019-07-16 13:10:31 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2019-12-11 14:10:20 +01:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2019-07-16 13:10:31 +02: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)
|
2020-04-19 01:13:55 +02:00
|
|
|
assert.Equal(t, 80, photoLabel.Uncertainty)
|
|
|
|
assert.Equal(t, "source", photoLabel.LabelSrc)
|
2019-07-16 13:10:31 +02:00
|
|
|
})
|
|
|
|
}
|
2019-12-17 18:28:07 +01:00
|
|
|
func TestPhotoLabel_TableName(t *testing.T) {
|
|
|
|
photoLabel := &PhotoLabel{}
|
|
|
|
tableName := photoLabel.TableName()
|
|
|
|
|
|
|
|
assert.Equal(t, "photos_labels", tableName)
|
|
|
|
}
|