mirror of
https://github.com/go-gitea/gitea.git
synced 2026-03-25 07:25:46 +01:00
1. remove `TEST_CONFLICTING_PATCHES_WITH_GIT_APPLY` * it defaults to false and is unlikely to be useful for most users (see #22130) * with new git versions (>= 2.40), "merge-tree" is used, "checkConflictsByTmpRepo" isn't called, the option does nothing. 2. fix fragile `db.Cell2Int64` (new: `CellToInt`) 3. allow more routes in maintenance mode (e.g.: captcha) 4. fix MockLocale html escaping to make it have the same behavior as production locale
56 lines
1.7 KiB
Go
56 lines
1.7 KiB
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package auth_test
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
auth_model "code.gitea.io/gitea/models/auth"
|
|
"code.gitea.io/gitea/models/unittest"
|
|
"code.gitea.io/gitea/modules/json"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"xorm.io/xorm/schemas"
|
|
)
|
|
|
|
type TestSource struct {
|
|
auth_model.ConfigBase `json:"-"`
|
|
|
|
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)
|
|
}
|
|
|
|
func TestDumpAuthSource(t *testing.T) {
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
authSourceSchema, err := unittest.GetXORMEngine().TableInfo(new(auth_model.Source))
|
|
require.NoError(t, err)
|
|
|
|
auth_model.RegisterTypeConfig(auth_model.OAuth2, new(TestSource))
|
|
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"}'`)
|
|
}
|