-
Notifications
You must be signed in to change notification settings - Fork 62
/
gorm.go
49 lines (40 loc) · 1.37 KB
/
gorm.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) 2022 Trim21 <trim21.me@gmail.com>
//
// SPDX-License-Identifier: AGPL-3.0-only
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, version 3.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>
package test
import (
"testing"
"github.com/prometheus/client_golang/prometheus"
"github.com/stretchr/testify/require"
"github.com/uber-go/tally/v4"
"gorm.io/gorm"
"github.com/bangumi/server/config"
"github.com/bangumi/server/internal/dal"
"github.com/bangumi/server/internal/errgo"
)
func GetGorm(t *testing.T) *gorm.DB {
t.Helper()
db, err := newGorm(config.NewAppConfig())
require.NoError(t, err)
return db
}
func newGorm(c config.AppConfig) (*gorm.DB, error) {
conn, err := dal.NewConnectionPool(c)
if err != nil {
return nil, errgo.Wrap(err, "sql.Open")
}
db, err := dal.NewDB(conn, c, tally.NoopScope, prometheus.NewRegistry())
return db, errgo.Wrap(err, "gorm.Open")
}