mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-28 05:33:27 +08:00
38 lines
817 B
Go
38 lines
817 B
Go
package clean
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestScope(t *testing.T) {
|
|
t.Run("Empty", func(t *testing.T) {
|
|
q := Scope("")
|
|
assert.Equal(t, "", q)
|
|
})
|
|
t.Run("Sanitized", func(t *testing.T) {
|
|
q := Scope(" foo:BAR webdav openid metrics !")
|
|
assert.Equal(t, "foo:bar metrics openid webdav", q)
|
|
})
|
|
t.Run("All", func(t *testing.T) {
|
|
q := Scope("*")
|
|
assert.Equal(t, "*", q)
|
|
})
|
|
}
|
|
|
|
func TestScopes(t *testing.T) {
|
|
t.Run("Empty", func(t *testing.T) {
|
|
q := Scopes("")
|
|
assert.Equal(t, []string{}, q)
|
|
})
|
|
t.Run("Sanitized", func(t *testing.T) {
|
|
q := Scopes(" foo:BAR webdav openid metrics !")
|
|
assert.Equal(t, []string{"foo:bar", "metrics", "openid", "webdav"}, q)
|
|
})
|
|
t.Run("All", func(t *testing.T) {
|
|
q := Scopes("*")
|
|
assert.Equal(t, []string{"*"}, q)
|
|
})
|
|
}
|