2019-08-24 14:54:45 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2016-08-12 15:26:50 +05:30
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
package auth_test
|
2016-08-12 15:26:50 +05:30
|
|
|
|
|
|
|
import (
|
2021-08-28 08:55:27 +05:30
|
|
|
"strings"
|
2016-08-12 15:26:50 +05:30
|
|
|
"testing"
|
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
auth_model "code.gitea.io/gitea/models/auth"
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-12 20:06:47 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/modules/json"
|
2019-08-24 14:54:45 +05:30
|
|
|
|
2017-02-08 11:59:07 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
2021-09-19 17:19:59 +05:30
|
|
|
"xorm.io/xorm/schemas"
|
2016-08-12 15:26:50 +05:30
|
|
|
)
|
|
|
|
|
2021-08-28 08:55:27 +05:30
|
|
|
type TestSource struct {
|
|
|
|
Provider string
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
OpenIDConnectAutoDiscoveryURL string
|
|
|
|
IconURL string
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up a LDAPConfig from serialized format.
|
|
|
|
func (source *TestSource) FromDB(bs []byte) error {
|
|
|
|
return json.Unmarshal(bs, &source)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports a LDAPConfig to a serialized format.
|
|
|
|
func (source *TestSource) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(source)
|
|
|
|
}
|
|
|
|
|
2022-01-02 18:42:35 +05:30
|
|
|
func TestDumpAuthSource(t *testing.T) {
|
2021-11-12 20:06:47 +05:30
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2021-08-28 08:55:27 +05:30
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
authSourceSchema, err := db.TableInfo(new(auth_model.Source))
|
2021-08-28 08:55:27 +05:30
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
auth_model.RegisterTypeConfig(auth_model.OAuth2, new(TestSource))
|
2021-08-28 08:55:27 +05:30
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
auth_model.CreateSource(&auth_model.Source{
|
|
|
|
Type: auth_model.OAuth2,
|
2021-08-28 08:55:27 +05:30
|
|
|
Name: "TestSource",
|
|
|
|
IsActive: false,
|
|
|
|
Cfg: &TestSource{
|
|
|
|
Provider: "ConvertibleSourceName",
|
|
|
|
ClientID: "42",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
sb := new(strings.Builder)
|
|
|
|
|
2022-01-02 18:42:35 +05:30
|
|
|
db.DumpTables([]*schemas.Table{authSourceSchema}, sb)
|
2021-08-28 08:55:27 +05:30
|
|
|
|
|
|
|
assert.Contains(t, sb.String(), `"Provider":"ConvertibleSourceName"`)
|
|
|
|
}
|