blob: 973f64d4a89f7a1b48a59674ece6afba27444914 (
plain)
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
|
// Copyright 2022 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package db
import (
"testing"
"github.com/stretchr/testify/require"
"gogs.io/gogs/internal/dbtest"
)
func TestWatches(t *testing.T) {
if testing.Short() {
t.Skip()
}
t.Parallel()
tables := []any{new(Watch)}
db := &watches{
DB: dbtest.NewDB(t, "watches", tables...),
}
for _, tc := range []struct {
name string
test func(t *testing.T, db *watches)
}{
{"ListByRepo", watchesListByRepo},
} {
t.Run(tc.name, func(t *testing.T) {
t.Cleanup(func() {
err := clearTables(t, db.DB, tables...)
require.NoError(t, err)
})
tc.test(t, db)
})
if t.Failed() {
break
}
}
}
func watchesListByRepo(_ *testing.T, _ *watches) {
// TODO: Add tests once WatchRepo is migrated to GORM.
}
|