Files

56 lines
1.7 KiB
Go
Raw Permalink Normal View History

// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2016-08-12 02:56:50 -07:00
package auth_test
2016-08-12 02:56:50 -07:00
import (
"strings"
2016-08-12 02:56:50 -07:00
"testing"
auth_model "code.gitea.io/gitea/models/auth"
"code.gitea.io/gitea/models/unittest"
"code.gitea.io/gitea/modules/json"
2017-02-08 01:29:07 -05:00
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"xorm.io/xorm/schemas"
2016-08-12 02:56:50 -07:00
)
type TestSource struct {
2026-03-24 02:23:42 +08:00
auth_model.ConfigBase `json:"-"`
2026-03-24 02:23:42 +08:00
TestField 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 21:12:35 +08:00
func TestDumpAuthSource(t *testing.T) {
2026-03-24 02:23:42 +08:00
require.NoError(t, unittest.PrepareTestDatabase())
2025-08-30 01:04:06 +08:00
authSourceSchema, err := unittest.GetXORMEngine().TableInfo(new(auth_model.Source))
2026-03-24 02:23:42 +08:00
require.NoError(t, err)
auth_model.RegisterTypeConfig(auth_model.OAuth2, new(TestSource))
2026-03-24 02:23:42 +08:00
source := &auth_model.Source{
Type: auth_model.OAuth2,
Name: "TestSource",
Cfg: &TestSource{TestField: "TestValue"},
}
require.NoError(t, auth_model.CreateSource(t.Context(), source))
// intentionally test the "dump" to make sure the dumped JSON is correct: https://github.com/go-gitea/gitea/pull/16847
sb := &strings.Builder{}
require.NoError(t, unittest.GetXORMEngine().DumpTables([]*schemas.Table{authSourceSchema}, sb))
// the dumped SQL is something like:
// INSERT INTO `login_source` (`id`, `type`, `name`, `is_active`, `is_sync_enabled`, `two_factor_policy`, `cfg`, `created_unix`, `updated_unix`) VALUES (1,6,'TestSource',0,0,'','{"TestField":"TestValue"}',1774179784,1774179784);
assert.Contains(t, sb.String(), `'{"TestField":"TestValue"}'`)
}