mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	This commit replaces the timestamp based state system with a new one that has update channels directly to the connected nodes. It will send an update to all listening clients via the polling mechanism. It introduces a new package notifier, which has a concurrency safe manager for all our channels to the connected nodes. Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
		
			
				
	
	
		
			57 lines
		
	
	
		
			813 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			813 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package db
 | |
| 
 | |
| import (
 | |
| 	"net/netip"
 | |
| 	"os"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/juanfont/headscale/hscontrol/notifier"
 | |
| 	"gopkg.in/check.v1"
 | |
| )
 | |
| 
 | |
| func Test(t *testing.T) {
 | |
| 	check.TestingT(t)
 | |
| }
 | |
| 
 | |
| var _ = check.Suite(&Suite{})
 | |
| 
 | |
| type Suite struct{}
 | |
| 
 | |
| var (
 | |
| 	tmpDir string
 | |
| 	db     *HSDatabase
 | |
| )
 | |
| 
 | |
| func (s *Suite) SetUpTest(c *check.C) {
 | |
| 	s.ResetDB(c)
 | |
| }
 | |
| 
 | |
| func (s *Suite) TearDownTest(c *check.C) {
 | |
| 	os.RemoveAll(tmpDir)
 | |
| }
 | |
| 
 | |
| func (s *Suite) ResetDB(c *check.C) {
 | |
| 	if len(tmpDir) != 0 {
 | |
| 		os.RemoveAll(tmpDir)
 | |
| 	}
 | |
| 	var err error
 | |
| 	tmpDir, err = os.MkdirTemp("", "autoygg-client-test")
 | |
| 	if err != nil {
 | |
| 		c.Fatal(err)
 | |
| 	}
 | |
| 
 | |
| 	db, err = NewHeadscaleDatabase(
 | |
| 		"sqlite3",
 | |
| 		tmpDir+"/headscale_test.db",
 | |
| 		false,
 | |
| 		notifier.NewNotifier(),
 | |
| 		[]netip.Prefix{
 | |
| 			netip.MustParsePrefix("10.27.0.0/23"),
 | |
| 		},
 | |
| 		"",
 | |
| 	)
 | |
| 	if err != nil {
 | |
| 		c.Fatal(err)
 | |
| 	}
 | |
| }
 |