mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
OIDC: Upgrade "zitadel/oidc" from v1 to v2 #782
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
@@ -20,3 +20,18 @@ func TestScope(t *testing.T) {
|
||||
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)
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user