38 lines
864 B
Go
38 lines
864 B
Go
package vocation
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func TestVocationTableName(t *testing.T) {
|
|
var m Vocation
|
|
if got := m.TableName(); got != "vocations" {
|
|
t.Fatalf("expected table name vocations, got %q", got)
|
|
}
|
|
}
|
|
|
|
func TestVocationBeforeCreate(t *testing.T) {
|
|
t.Run("generates id when empty", func(t *testing.T) {
|
|
m := &Vocation{}
|
|
if err := m.BeforeCreate(&gorm.DB{}); err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if len(m.ID) == 0 {
|
|
t.Fatalf("expected id to be generated")
|
|
}
|
|
})
|
|
|
|
t.Run("keeps existing id", func(t *testing.T) {
|
|
existing := []byte("already-set-id")
|
|
m := &Vocation{ID: append([]byte(nil), existing...)}
|
|
if err := m.BeforeCreate(&gorm.DB{}); err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if string(m.ID) != string(existing) {
|
|
t.Fatalf("expected existing id to stay unchanged")
|
|
}
|
|
})
|
|
}
|