mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
Since caching all subject data proved too complex in the time available, this implementation uses a simple key/value lookup table to cache subject names and perform backward searches by uid.
26 lines
354 B
Go
26 lines
354 B
Go
package entity
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestLabelCounts(t *testing.T) {
|
|
results := LabelCounts()
|
|
|
|
if len(results) == 0 {
|
|
t.Fatal("at least one result expected")
|
|
}
|
|
|
|
for _, result := range results {
|
|
t.Logf("LABEL COUNT: %+v", result)
|
|
}
|
|
}
|
|
|
|
func TestUpdatePhotoCounts(t *testing.T) {
|
|
err := UpdateCounts()
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|