2023-05-21 12:37:59 -04:00
|
|
|
package db
|
2021-05-09 11:12:05 -04:00
|
|
|
|
|
|
|
import (
|
2022-09-02 03:16:19 -04:00
|
|
|
"net/netip"
|
2021-05-09 11:12:05 -04:00
|
|
|
"os"
|
2023-05-21 12:37:59 -04:00
|
|
|
"sync/atomic"
|
2021-05-09 11:12:05 -04:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"gopkg.in/check.v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test(t *testing.T) {
|
|
|
|
check.TestingT(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ = check.Suite(&Suite{})
|
|
|
|
|
|
|
|
type Suite struct{}
|
|
|
|
|
2021-11-13 03:36:45 -05:00
|
|
|
var (
|
|
|
|
tmpDir string
|
2023-05-21 12:37:59 -04:00
|
|
|
db *HSDatabase
|
|
|
|
|
|
|
|
// channelUpdates counts the number of times
|
|
|
|
// either of the channels was notified.
|
|
|
|
channelUpdates int32
|
2021-11-13 03:36:45 -05:00
|
|
|
)
|
2021-05-09 11:12:05 -04:00
|
|
|
|
|
|
|
func (s *Suite) SetUpTest(c *check.C) {
|
2023-05-21 12:37:59 -04:00
|
|
|
atomic.StoreInt32(&channelUpdates, 0)
|
2021-05-09 11:12:05 -04:00
|
|
|
s.ResetDB(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Suite) TearDownTest(c *check.C) {
|
|
|
|
os.RemoveAll(tmpDir)
|
|
|
|
}
|
|
|
|
|
2023-05-21 12:37:59 -04:00
|
|
|
func notificationSink(c <-chan struct{}) {
|
|
|
|
for {
|
|
|
|
<-c
|
|
|
|
atomic.AddInt32(&channelUpdates, 1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-09 11:12:05 -04:00
|
|
|
func (s *Suite) ResetDB(c *check.C) {
|
|
|
|
if len(tmpDir) != 0 {
|
|
|
|
os.RemoveAll(tmpDir)
|
|
|
|
}
|
|
|
|
var err error
|
2022-08-09 17:21:19 -04:00
|
|
|
tmpDir, err = os.MkdirTemp("", "autoygg-client-test")
|
2021-05-09 11:12:05 -04:00
|
|
|
if err != nil {
|
|
|
|
c.Fatal(err)
|
|
|
|
}
|
2023-05-11 03:09:18 -04:00
|
|
|
|
2023-05-21 12:37:59 -04:00
|
|
|
sink := make(chan struct{})
|
2023-05-11 03:09:18 -04:00
|
|
|
|
2023-05-21 12:37:59 -04:00
|
|
|
go notificationSink(sink)
|
2023-05-11 03:09:18 -04:00
|
|
|
|
2023-05-21 12:37:59 -04:00
|
|
|
db, err = NewHeadscaleDatabase(
|
|
|
|
"sqlite3",
|
|
|
|
tmpDir+"/headscale_test.db",
|
2023-05-11 03:09:18 -04:00
|
|
|
false,
|
2023-05-21 12:37:59 -04:00
|
|
|
sink,
|
|
|
|
[]netip.Prefix{
|
|
|
|
netip.MustParsePrefix("10.27.0.0/23"),
|
|
|
|
},
|
2023-05-11 03:09:18 -04:00
|
|
|
"",
|
|
|
|
)
|
2021-07-04 15:40:46 -04:00
|
|
|
if err != nil {
|
|
|
|
c.Fatal(err)
|
|
|
|
}
|
2021-05-09 11:12:05 -04:00
|
|
|
}
|