2019-08-24 09:24:45 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2016-08-12 09:56:50 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2019-03-21 01:38:54 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2021-08-28 11:16:19 +00:00
|
|
|
"strings"
|
2016-08-12 09:56:50 +00:00
|
|
|
"testing"
|
|
|
|
|
2021-08-28 11:16:19 +00:00
|
|
|
"code.gitea.io/gitea/modules/auth/oauth2"
|
2019-08-24 09:24:45 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-08-28 11:16:19 +00:00
|
|
|
"xorm.io/xorm/schemas"
|
2019-08-24 09:24:45 +00:00
|
|
|
|
2017-02-08 06:29:07 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2016-08-12 09:56:50 +00:00
|
|
|
)
|
|
|
|
|
2019-03-21 01:38:54 +00:00
|
|
|
func TestDumpDatabase(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "dump")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2020-09-07 22:27:17 +00:00
|
|
|
type Version struct {
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
Version int64
|
|
|
|
}
|
2021-05-06 23:17:43 +00:00
|
|
|
assert.NoError(t, x.Sync2(new(Version)))
|
2020-09-07 22:27:17 +00:00
|
|
|
|
2019-08-24 09:24:45 +00:00
|
|
|
for _, dbName := range setting.SupportedDatabases {
|
|
|
|
dbType := setting.GetDBTypeByName(dbName)
|
2019-03-21 01:38:54 +00:00
|
|
|
assert.NoError(t, DumpDatabase(filepath.Join(dir, dbType+".sql"), dbType))
|
|
|
|
}
|
|
|
|
}
|
2021-08-28 11:16:19 +00:00
|
|
|
|
|
|
|
func TestDumpLoginSource(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
|
|
|
|
loginSourceSchema, err := x.TableInfo(new(LoginSource))
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
CreateLoginSource(&LoginSource{
|
|
|
|
Type: LoginOAuth2,
|
|
|
|
Name: "TestSource",
|
|
|
|
IsActived: false,
|
|
|
|
Cfg: &OAuth2Config{
|
|
|
|
Provider: "TestSourceProvider",
|
|
|
|
CustomURLMapping: &oauth2.CustomURLMapping{},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
sb := new(strings.Builder)
|
|
|
|
|
|
|
|
x.DumpTables([]*schemas.Table{loginSourceSchema}, sb)
|
|
|
|
|
|
|
|
assert.Contains(t, sb.String(), `"Provider":"TestSourceProvider"`)
|
|
|
|
}
|