mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 16:57:17 +08:00
99 lines
2.0 KiB
Go
99 lines
2.0 KiB
Go
package entity
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/photoprism/photoprism/pkg/authn"
|
|
"github.com/photoprism/photoprism/pkg/time/unix"
|
|
)
|
|
|
|
func TestNewClientSession(t *testing.T) {
|
|
t.Run("Anonymous", func(t *testing.T) {
|
|
sess := NewClientSession("Anonymous", unix.Day, "metrics", authn.GrantClientCredentials, nil)
|
|
|
|
if sess == nil {
|
|
t.Fatal("session must not be nil")
|
|
}
|
|
|
|
t.Logf("sess: %#v", sess)
|
|
})
|
|
t.Run("Alice", func(t *testing.T) {
|
|
user := FindUserByName("alice")
|
|
|
|
if user == nil {
|
|
t.Fatal("user must not be nil")
|
|
}
|
|
|
|
sess := NewClientSession("alice", unix.Day, "metrics", authn.GrantPassword, user)
|
|
|
|
if sess == nil {
|
|
t.Fatal("session must not be nil")
|
|
}
|
|
|
|
t.Logf("sess: %#v", sess)
|
|
})
|
|
t.Run("NoScope", func(t *testing.T) {
|
|
user := FindUserByName("alice")
|
|
|
|
if user == nil {
|
|
t.Fatal("user must not be nil")
|
|
}
|
|
|
|
sess := NewClientSession("alice", unix.Day, "", authn.GrantCLI, user)
|
|
|
|
if sess == nil {
|
|
t.Fatal("session must not be nil")
|
|
}
|
|
|
|
t.Logf("sess: %#v", sess)
|
|
})
|
|
t.Run("NoLifetime", func(t *testing.T) {
|
|
user := FindUserByName("alice")
|
|
|
|
if user == nil {
|
|
t.Fatal("user must not be nil")
|
|
}
|
|
|
|
sess := NewClientSession("", 0, "metrics", authn.GrantCLI, user)
|
|
|
|
if sess == nil {
|
|
t.Fatal("session must not be nil")
|
|
}
|
|
|
|
t.Logf("sess: %#v", sess)
|
|
})
|
|
}
|
|
|
|
func TestAddClientSession(t *testing.T) {
|
|
t.Run("Anonymous", func(t *testing.T) {
|
|
sess, err := AddClientSession("", unix.Day, "metrics", authn.GrantClientCredentials, nil)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
if sess == nil {
|
|
t.Fatal("session must not be nil")
|
|
}
|
|
|
|
t.Logf("sess: %#v", sess)
|
|
})
|
|
t.Run("Alice", func(t *testing.T) {
|
|
user := FindUserByName("alice")
|
|
|
|
if user == nil {
|
|
t.Fatal("user must not be nil")
|
|
}
|
|
|
|
sess, err := AddClientSession("My Client App Token", unix.Day, "metrics", authn.GrantCLI, user)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
if sess == nil {
|
|
t.Fatal("session must not be nil")
|
|
}
|
|
|
|
t.Logf("sess: %#v", sess)
|
|
})
|
|
}
|