Fix scene marker query (#5014)

This commit is contained in:
WithoutPants
2024-06-24 16:02:46 +10:00
committed by GitHub
parent 593207866f
commit 3156191b83
2 changed files with 22 additions and 0 deletions

View File

@@ -74,6 +74,27 @@ func TestMarkerCountByTagID(t *testing.T) {
})
}
func TestMarkerQueryQ(t *testing.T) {
withTxn(func(ctx context.Context) error {
q := getSceneTitle(sceneIdxWithMarkers)
m, _, err := db.SceneMarker.Query(ctx, nil, &models.FindFilterType{
Q: &q,
})
if err != nil {
t.Errorf("Error querying scene markers: %s", err.Error())
}
if !assert.Greater(t, len(m), 0) {
return nil
}
assert.Equal(t, sceneIDs[sceneIdxWithMarkers], m[0].SceneID)
return nil
})
}
func TestMarkerQuerySortBySceneUpdated(t *testing.T) {
withTxn(func(ctx context.Context) error {
sort := "scenes_updated_at"