2021-10-21 09:22:43 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-10-21 09:22:43 +00:00
|
|
|
|
2022-10-16 23:29:26 +00:00
|
|
|
package system
|
2021-10-21 09:22:43 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 14:36:47 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-10-21 09:22:43 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 13:58:21 +00:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
FixtureFiles: []string{""}, // load nothing
|
|
|
|
})
|
2021-10-21 09:22:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type testItem1 struct {
|
|
|
|
Val1 string
|
|
|
|
Val2 int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*testItem1) Name() string {
|
|
|
|
return "test-item1"
|
|
|
|
}
|
|
|
|
|
|
|
|
type testItem2 struct {
|
|
|
|
K string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*testItem2) Name() string {
|
|
|
|
return "test-item2"
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAppStateDB(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2021-10-21 09:22:43 +00:00
|
|
|
|
|
|
|
as := &DBStore{}
|
|
|
|
|
|
|
|
item1 := new(testItem1)
|
|
|
|
assert.NoError(t, as.Get(item1))
|
|
|
|
assert.Equal(t, "", item1.Val1)
|
|
|
|
assert.EqualValues(t, 0, item1.Val2)
|
|
|
|
|
|
|
|
item1 = new(testItem1)
|
|
|
|
item1.Val1 = "a"
|
|
|
|
item1.Val2 = 2
|
|
|
|
assert.NoError(t, as.Set(item1))
|
|
|
|
|
|
|
|
item2 := new(testItem2)
|
|
|
|
item2.K = "V"
|
|
|
|
assert.NoError(t, as.Set(item2))
|
|
|
|
|
|
|
|
item1 = new(testItem1)
|
|
|
|
assert.NoError(t, as.Get(item1))
|
|
|
|
assert.Equal(t, "a", item1.Val1)
|
|
|
|
assert.EqualValues(t, 2, item1.Val2)
|
|
|
|
|
|
|
|
item2 = new(testItem2)
|
|
|
|
assert.NoError(t, as.Get(item2))
|
|
|
|
assert.Equal(t, "V", item2.K)
|
|
|
|
}
|