mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 21:59:43 +03:00
60 lines
1.3 KiB
Go
60 lines
1.3 KiB
Go
package fediverse
|
|
|
|
import "testing"
|
|
|
|
const (
|
|
accessToken = "fake-access-token"
|
|
account = "blah"
|
|
userID = "fake-user-id"
|
|
userDisplayName = "fake-user-display-name"
|
|
)
|
|
|
|
func TestOTPFlowValidation(t *testing.T) {
|
|
r, success := RegisterFediverseOTP(accessToken, userID, userDisplayName, account)
|
|
|
|
if !success {
|
|
t.Error("Registration should be permitted.")
|
|
}
|
|
|
|
if r.Code == "" {
|
|
t.Error("Code is empty")
|
|
}
|
|
|
|
if r.Account != account {
|
|
t.Error("Account is not set correctly")
|
|
}
|
|
|
|
if r.Timestamp.IsZero() {
|
|
t.Error("Timestamp is empty")
|
|
}
|
|
|
|
valid, registration := ValidateFediverseOTP(accessToken, r.Code)
|
|
if !valid {
|
|
t.Error("Code is not valid")
|
|
}
|
|
|
|
if registration.Account != account {
|
|
t.Error("Account is not set correctly")
|
|
}
|
|
|
|
if registration.UserID != userID {
|
|
t.Error("UserID is not set correctly")
|
|
}
|
|
|
|
if registration.UserDisplayName != userDisplayName {
|
|
t.Error("UserDisplayName is not set correctly")
|
|
}
|
|
}
|
|
|
|
func TestSingleOTPFlowRequest(t *testing.T) {
|
|
r1, _ := RegisterFediverseOTP(accessToken, userID, userDisplayName, account)
|
|
r2, s2 := RegisterFediverseOTP(accessToken, userID, userDisplayName, account)
|
|
|
|
if r1.Code != r2.Code {
|
|
t.Error("Only one registration should be permitted.")
|
|
}
|
|
|
|
if s2 {
|
|
t.Error("Second registration should not be permitted.")
|
|
}
|
|
}
|