mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 14:59:06 +00:00
19d5b2f922
This PR fixes two bugs with Webauthn support: * There was a longstanding bug within webauthn due to the backend using URLEncodedBase64 but the javascript using decoding using plain base64. This causes intermittent issues with users reporting decoding errors. * Following the recent upgrade to webauthn there was a change in the way the library expects RPOrigins to be configured. This leads to the Relying Party Origin not being configured and prevents registration. Fix #22507 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
25 lines
559 B
Go
25 lines
559 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package webauthn
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestInit(t *testing.T) {
|
|
setting.Domain = "domain"
|
|
setting.AppName = "AppName"
|
|
setting.AppURL = "https://domain/"
|
|
rpOrigin := []string{"https://domain"}
|
|
|
|
Init()
|
|
|
|
assert.Equal(t, setting.Domain, WebAuthn.Config.RPID)
|
|
assert.Equal(t, setting.AppName, WebAuthn.Config.RPDisplayName)
|
|
assert.Equal(t, rpOrigin, WebAuthn.Config.RPOrigins)
|
|
}
|