mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-31 21:17:43 +09:00 
			
		
		
		
	This is a massive commit that restructures the code into modules:
db/
    All functions related to modifying the Database
types/
    All type definitions and methods that can be exclusivly used on
    these types without dependencies
policy/
    All Policy related code, now without dependencies on the Database.
policy/matcher/
    Dedicated code to match machines in a list of FilterRules
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			952 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			952 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package hscontrol
 | |
| 
 | |
| import (
 | |
| 	"net/netip"
 | |
| 	"os"
 | |
| 	"testing"
 | |
| 
 | |
| 	"gopkg.in/check.v1"
 | |
| )
 | |
| 
 | |
| func Test(t *testing.T) {
 | |
| 	check.TestingT(t)
 | |
| }
 | |
| 
 | |
| var _ = check.Suite(&Suite{})
 | |
| 
 | |
| type Suite struct{}
 | |
| 
 | |
| var (
 | |
| 	tmpDir string
 | |
| 	app    *Headscale
 | |
| )
 | |
| 
 | |
| 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-test2")
 | |
| 	if err != nil {
 | |
| 		c.Fatal(err)
 | |
| 	}
 | |
| 	cfg := Config{
 | |
| 		PrivateKeyPath:      tmpDir + "/private.key",
 | |
| 		NoisePrivateKeyPath: tmpDir + "/noise_private.key",
 | |
| 		DBtype:              "sqlite3",
 | |
| 		DBpath:              tmpDir + "/headscale_test.db",
 | |
| 		IPPrefixes: []netip.Prefix{
 | |
| 			netip.MustParsePrefix("10.27.0.0/23"),
 | |
| 		},
 | |
| 		OIDC: OIDCConfig{
 | |
| 			StripEmaildomain: false,
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	app, err = NewHeadscale(&cfg)
 | |
| 	if err != nil {
 | |
| 		c.Fatal(err)
 | |
| 	}
 | |
| }
 |