2019-08-24 14:54:45 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2016-08-12 15:26:50 +05:30
|
|
|
// 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 07:08:54 +05:30
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2016-08-12 15:26:50 +05:30
|
|
|
"testing"
|
|
|
|
|
2019-08-24 14:54:45 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
2017-02-08 11:59:07 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
2016-08-12 15:26:50 +05:30
|
|
|
)
|
|
|
|
|
2019-03-21 07:08:54 +05:30
|
|
|
func TestDumpDatabase(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "dump")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2019-08-24 14:54:45 +05:30
|
|
|
for _, dbName := range setting.SupportedDatabases {
|
|
|
|
dbType := setting.GetDBTypeByName(dbName)
|
2019-03-21 07:08:54 +05:30
|
|
|
assert.NoError(t, DumpDatabase(filepath.Join(dir, dbType+".sql"), dbType))
|
|
|
|
}
|
|
|
|
}
|