2019-08-24 03:24:45 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-08-12 03:56:50 -06:00
|
|
|
|
2022-08-24 20:31:57 -06:00
|
|
|
package auth_test
|
2016-08-12 03:56:50 -06:00
|
|
|
|
|
|
|
import (
|
2021-08-27 21:25:27 -06:00
|
|
|
"strings"
|
2016-08-12 03:56:50 -06:00
|
|
|
"testing"
|
|
|
|
|
2022-08-24 20:31:57 -06:00
|
|
|
auth_model "code.gitea.io/gitea/models/auth"
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/modules/json"
|
2019-08-24 03:24:45 -06:00
|
|
|
|
2017-02-07 23:29:07 -07:00
|
|
|
"github.com/stretchr/testify/assert"
|
2021-09-19 05:49:59 -06:00
|
|
|
"xorm.io/xorm/schemas"
|
2016-08-12 03:56:50 -06:00
|
|
|
)
|
|
|
|
|
2021-08-27 21:25:27 -06:00
|
|
|
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 06:12:35 -07:00
|
|
|
func TestDumpAuthSource(t *testing.T) {
|
2021-11-12 07:36:47 -07:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2021-08-27 21:25:27 -06:00
|
|
|
|
2022-08-24 20:31:57 -06:00
|
|
|
authSourceSchema, err := db.TableInfo(new(auth_model.Source))
|
2021-08-27 21:25:27 -06:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-08-24 20:31:57 -06:00
|
|
|
auth_model.RegisterTypeConfig(auth_model.OAuth2, new(TestSource))
|
2021-08-27 21:25:27 -06:00
|
|
|
|
2023-10-10 22:24:07 -06:00
|
|
|
auth_model.CreateSource(db.DefaultContext, &auth_model.Source{
|
2022-08-24 20:31:57 -06:00
|
|
|
Type: auth_model.OAuth2,
|
2021-08-27 21:25:27 -06:00
|
|
|
Name: "TestSource",
|
|
|
|
IsActive: false,
|
|
|
|
Cfg: &TestSource{
|
|
|
|
Provider: "ConvertibleSourceName",
|
|
|
|
ClientID: "42",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
sb := new(strings.Builder)
|
|
|
|
|
2022-01-02 06:12:35 -07:00
|
|
|
db.DumpTables([]*schemas.Table{authSourceSchema}, sb)
|
2021-08-27 21:25:27 -06:00
|
|
|
|
|
|
|
assert.Contains(t, sb.String(), `"Provider":"ConvertibleSourceName"`)
|
|
|
|
}
|