photoprism/internal/entity/photo_label_fixtures.go
2020-05-05 09:28:30 +02:00

36 lines
828 B
Go

package entity
var PhotoLabelFixtures = map[string]PhotoLabel{
"1": {
PhotoID: 1000000,
LabelID: 1000001,
LabelSrc: "image",
Uncertainty: 38,
Photo: &PhotoFixture19800101_000002_D640C559,
Label: &LabelFixtureFlower,
},
"2": {
PhotoID: 1000000,
LabelID: 1000002,
LabelSrc: "manual",
Uncertainty: 38,
Photo: &PhotoFixture19800101_000002_D640C559,
Label: &LabelFixtureCake,
},
"3": {
PhotoID: 1000003,
LabelID: 1000006,
LabelSrc: "manual",
Uncertainty: 20,
Photo: &PhotoFixturePhoto03,
Label: &LabelFixtureUpdatePhotoLabel,
},
}
// CreatePhotoLabelFixtures inserts known entities into the database for testing.
func CreatePhotoLabelFixtures() {
for _, entity := range PhotoLabelFixtures {
Db().Create(&entity)
}
}