mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-21 05:11:17 +00:00
6fa934880e
* Re-add example configuration for Crowd * Implement Crowd authentication * Fix: Some errors just mean there is no user * Document crowd provider * Vendor new dependencies * Reduce error messages: Check for config details
32 lines
588 B
Go
32 lines
588 B
Go
package crowd
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetUser(t *testing.T) {
|
|
tv := PrepVars(t)
|
|
c, err := New(tv.AppUsername, tv.AppPassword, tv.AppURL)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
user := os.Getenv("APP_USER_USERNAME")
|
|
if user == "" {
|
|
t.Skip("Can't run test because APP_USER_USERNAME undefined")
|
|
}
|
|
|
|
// test new session
|
|
u, err := c.GetUser(user)
|
|
if err != nil {
|
|
t.Errorf("Error getting user info: %s\n", err)
|
|
} else {
|
|
t.Logf("Got user info: %+v\n", u)
|
|
}
|
|
|
|
if u.UserName == "" {
|
|
t.Errorf("username was empty so we didn't get/decode a response from GetUser")
|
|
}
|
|
|
|
}
|