2024-08-27 18:54:28 +02:00
package db
import (
2026-02-06 21:45:32 +01:00
"context"
2024-11-18 17:33:46 +01:00
"database/sql"
2024-08-27 18:54:28 +02:00
"os"
2025-01-23 14:58:42 +01:00
"os/exec"
2024-08-27 18:54:28 +02:00
"path/filepath"
2024-11-23 11:19:52 +01:00
"strings"
2024-08-27 18:54:28 +02:00
"testing"
"github.com/juanfont/headscale/hscontrol/types"
"github.com/stretchr/testify/assert"
2024-11-22 16:54:58 +01:00
"github.com/stretchr/testify/require"
2024-08-27 18:54:28 +02:00
"gorm.io/gorm"
)
2025-05-21 11:08:33 +02:00
// TestSQLiteMigrationAndDataValidation tests specific SQLite migration scenarios
// and validates data integrity after migration. All migrations that require data validation
// should be added here.
func TestSQLiteMigrationAndDataValidation ( t * testing . T ) {
2024-08-27 18:54:28 +02:00
tests := [ ] struct {
dbPath string
wantFunc func ( * testing . T , * HSDatabase )
} {
2024-09-29 13:00:27 +02:00
// at 14:15:06 ❯ go run ./cmd/headscale preauthkeys list
// ID | Key | Reusable | Ephemeral | Used | Expiration | Created | Tags
// 1 | 09b28f.. | false | false | false | 2024-09-27 | 2024-09-27 | tag:derp
// 2 | 3112b9.. | false | false | false | 2024-09-27 | 2024-09-27 | tag:derp
2025-02-07 10:22:23 +01:00
{
2025-05-21 11:08:33 +02:00
dbPath : "testdata/sqlite/failing-node-preauth-constraint_dump.sql" ,
wantFunc : func ( t * testing . T , hsdb * HSDatabase ) {
t . Helper ( )
// Comprehensive data preservation validation for node-preauth constraint issue
// Expected data from dump: 1 user, 2 api_keys, 6 nodes
// Verify users data preservation
users , err := Read ( hsdb . DB , func ( rx * gorm . DB ) ( [ ] types . User , error ) {
return ListUsers ( rx )
} )
require . NoError ( t , err )
assert . Len ( t , users , 1 , "should preserve all 1 user from original schema" )
// Verify api_keys data preservation
var apiKeyCount int
2026-02-06 21:45:32 +01:00
2025-05-21 11:08:33 +02:00
err = hsdb . DB . Raw ( "SELECT COUNT(*) FROM api_keys" ) . Scan ( & apiKeyCount ) . Error
require . NoError ( t , err )
assert . Equal ( t , 2 , apiKeyCount , "should preserve all 2 api_keys from original schema" )
// Verify nodes data preservation and field validation
nodes , err := Read ( hsdb . DB , func ( rx * gorm . DB ) ( types . Nodes , error ) {
2025-02-07 10:22:23 +01:00
return ListNodes ( rx )
} )
require . NoError ( t , err )
2025-05-21 11:08:33 +02:00
assert . Len ( t , nodes , 6 , "should preserve all 6 nodes from original schema" )
2025-02-07 10:22:23 +01:00
for _ , node := range nodes {
assert . Falsef ( t , node . MachineKey . IsZero ( ) , "expected non zero machinekey" )
assert . Contains ( t , node . MachineKey . String ( ) , "mkey:" )
assert . Falsef ( t , node . NodeKey . IsZero ( ) , "expected non zero nodekey" )
assert . Contains ( t , node . NodeKey . String ( ) , "nodekey:" )
assert . Falsef ( t , node . DiscoKey . IsZero ( ) , "expected non zero discokey" )
assert . Contains ( t , node . DiscoKey . String ( ) , "discokey:" )
assert . Nil ( t , node . AuthKey )
assert . Nil ( t , node . AuthKeyID )
}
} ,
} ,
2026-01-21 19:40:29 +05:30
// Test for RequestTags migration (202601121700-migrate-hostinfo-request-tags)
// and forced_tags->tags rename migration (202511131445-node-forced-tags-to-tags)
//
// This test validates that:
// 1. The forced_tags column is renamed to tags
// 2. RequestTags from host_info are validated against policy tagOwners
// 3. Authorized tags are migrated to the tags column
// 4. Unauthorized tags are rejected
// 5. Existing tags are preserved
// 6. Group membership is evaluated for tag authorization
{
dbPath : "testdata/sqlite/request_tags_migration_test.sql" ,
wantFunc : func ( t * testing . T , hsdb * HSDatabase ) {
t . Helper ( )
nodes , err := Read ( hsdb . DB , func ( rx * gorm . DB ) ( types . Nodes , error ) {
return ListNodes ( rx )
} )
require . NoError ( t , err )
require . Len ( t , nodes , 7 , "should have all 7 nodes" )
// Helper to find node by hostname
findNode := func ( hostname string ) * types . Node {
for _ , n := range nodes {
if n . Hostname == hostname {
return n
}
}
return nil
}
// Node 1: user1 has RequestTags for tag:server (authorized)
// Expected: tags = ["tag:server"]
node1 := findNode ( "node1" )
require . NotNil ( t , node1 , "node1 should exist" )
assert . Contains ( t , node1 . Tags , "tag:server" , "node1 should have tag:server migrated from RequestTags" )
// Node 2: user1 has RequestTags for tag:unauthorized (NOT authorized)
// Expected: tags = [] (unchanged)
node2 := findNode ( "node2" )
require . NotNil ( t , node2 , "node2 should exist" )
assert . Empty ( t , node2 . Tags , "node2 should have empty tags (unauthorized tag rejected)" )
// Node 3: user2 has RequestTags for tag:client (authorized) + existing tag:existing
// Expected: tags = ["tag:client", "tag:existing"]
node3 := findNode ( "node3" )
require . NotNil ( t , node3 , "node3 should exist" )
assert . Contains ( t , node3 . Tags , "tag:client" , "node3 should have tag:client migrated from RequestTags" )
assert . Contains ( t , node3 . Tags , "tag:existing" , "node3 should preserve existing tag" )
// Node 4: user1 has RequestTags for tag:server which already exists
// Expected: tags = ["tag:server"] (no duplicates)
node4 := findNode ( "node4" )
require . NotNil ( t , node4 , "node4 should exist" )
2026-05-13 09:53:01 +00:00
assert . Equal ( t , [ ] string { "tag:server" } , node4 . Tags . List ( ) , "node4 should have tag:server without duplicates" ) //nolint:goconst // descriptive test assertions read better with the literal inline
2026-01-21 19:40:29 +05:30
// Node 5: user2 has no RequestTags
// Expected: tags = [] (unchanged)
node5 := findNode ( "node5" )
require . NotNil ( t , node5 , "node5 should exist" )
assert . Empty ( t , node5 . Tags , "node5 should have empty tags (no RequestTags)" )
// Node 6: admin1 has RequestTags for tag:admin (authorized via group:admins)
// Expected: tags = ["tag:admin"]
node6 := findNode ( "node6" )
require . NotNil ( t , node6 , "node6 should exist" )
assert . Contains ( t , node6 . Tags , "tag:admin" , "node6 should have tag:admin migrated via group membership" )
// Node 7: user1 has RequestTags for tag:server (authorized) and tag:forbidden (unauthorized)
// Expected: tags = ["tag:server"] (only authorized tag)
node7 := findNode ( "node7" )
require . NotNil ( t , node7 , "node7 should exist" )
assert . Contains ( t , node7 . Tags , "tag:server" , "node7 should have tag:server migrated" )
assert . NotContains ( t , node7 . Tags , "tag:forbidden" , "node7 should NOT have tag:forbidden (unauthorized)" )
} ,
} ,
2026-05-22 21:56:30 +05:30
// Test for the zero-time node expiry migration
// (202605221435-clear-zero-time-node-expiry). Pre-0.28 versions
// stored a zero time.Time as '0001-01-01 00:00:00+00:00' rather
// than NULL, which caused 0.29 to report those nodes as expired.
// Fixes: https://github.com/juanfont/headscale/issues/3284
{
dbPath : "testdata/sqlite/zero_time_expiry_migration_test.sql" ,
wantFunc : func ( t * testing . T , hsdb * HSDatabase ) {
t . Helper ( )
nodes , err := Read ( hsdb . DB , func ( rx * gorm . DB ) ( types . Nodes , error ) {
return ListNodes ( rx )
} )
require . NoError ( t , err )
require . Len ( t , nodes , 5 , "should have all 5 nodes" )
byHostname := make ( map [ string ] * types . Node , len ( nodes ) )
for _ , n := range nodes {
byHostname [ n . Hostname ] = n
}
// Node 1 had a zero-time expiry; should be cleared.
node1 := byHostname [ "node1" ]
require . NotNil ( t , node1 , "node1 should exist" )
assert . Nil ( t , node1 . Expiry , "node1 zero-time expiry should be cleared to NULL" )
assert . False ( t , node1 . IsExpired ( ) , "node1 should not be reported as expired" )
// Node 2 already had NULL expiry; should still be NULL.
node2 := byHostname [ "node2" ]
require . NotNil ( t , node2 , "node2 should exist" )
assert . Nil ( t , node2 . Expiry , "node2 NULL expiry should be preserved" )
assert . False ( t , node2 . IsExpired ( ) , "node2 should not be reported as expired" )
// Node 3 had a real future expiry; should be preserved.
node3 := byHostname [ "node3" ]
require . NotNil ( t , node3 , "node3 should exist" )
require . NotNil ( t , node3 . Expiry , "node3 future expiry should be preserved" )
assert . Equal ( t , 2099 , node3 . Expiry . UTC ( ) . Year ( ) , "node3 expiry year should be 2099" )
assert . False ( t , node3 . IsExpired ( ) , "node3 with future expiry should not be expired" )
// Node 4 had a real past expiry; should be preserved.
node4 := byHostname [ "node4" ]
require . NotNil ( t , node4 , "node4 should exist" )
require . NotNil ( t , node4 . Expiry , "node4 past expiry should be preserved" )
assert . Equal ( t , 2020 , node4 . Expiry . UTC ( ) . Year ( ) , "node4 expiry year should be 2020" )
assert . True ( t , node4 . IsExpired ( ) , "node4 with past expiry should still be expired" )
// Node 5 also had a zero-time expiry; should be cleared.
node5 := byHostname [ "node5" ]
require . NotNil ( t , node5 , "node5 should exist" )
assert . Nil ( t , node5 . Expiry , "node5 zero-time expiry should be cleared to NULL" )
assert . False ( t , node5 . IsExpired ( ) , "node5 should not be reported as expired" )
} ,
} ,
2024-08-27 18:54:28 +02:00
}
for _ , tt := range tests {
t . Run ( tt . dbPath , func ( t * testing . T ) {
2025-05-21 11:08:33 +02:00
if ! strings . HasSuffix ( tt . dbPath , ".sql" ) {
t . Fatalf ( "TestSQLiteMigrationAndDataValidation only supports .sql files, got: %s" , tt . dbPath )
2024-08-27 18:54:28 +02:00
}
2025-05-21 11:08:33 +02:00
hsdb := dbForTestWithPath ( t , tt . dbPath )
2024-08-27 18:54:28 +02:00
if tt . wantFunc != nil {
tt . wantFunc ( t , hsdb )
}
} )
}
}
2025-05-21 11:08:33 +02:00
func createSQLiteFromSQLFile ( sqlFilePath , dbPath string ) error {
db , err := sql . Open ( "sqlite" , dbPath )
2024-08-27 18:54:28 +02:00
if err != nil {
2025-05-21 11:08:33 +02:00
return err
2024-08-27 18:54:28 +02:00
}
2025-05-21 11:08:33 +02:00
defer db . Close ( )
2024-08-27 18:54:28 +02:00
2025-05-21 11:08:33 +02:00
schemaContent , err := os . ReadFile ( sqlFilePath )
2024-08-27 18:54:28 +02:00
if err != nil {
2025-05-21 11:08:33 +02:00
return err
2024-08-27 18:54:28 +02:00
}
Redo OIDC configuration (#2020)
expand user, add claims to user
This commit expands the user table with additional fields that
can be retrieved from OIDC providers (and other places) and
uses this data in various tailscale response objects if it is
available.
This is the beginning of implementing
https://docs.google.com/document/d/1X85PMxIaVWDF6T_UPji3OeeUqVBcGj_uHRM5CI-AwlY/edit
trying to make OIDC more coherant and maintainable in addition
to giving the user a better experience and integration with a
provider.
remove usernames in magic dns, normalisation of emails
this commit removes the option to have usernames as part of MagicDNS
domains and headscale will now align with Tailscale, where there is a
root domain, and the machine name.
In addition, the various normalisation functions for dns names has been
made lighter not caring about username and special character that wont
occur.
Email are no longer normalised as part of the policy processing.
untagle oidc and regcache, use typed cache
This commits stops reusing the registration cache for oidc
purposes and switches the cache to be types and not use any
allowing the removal of a bunch of casting.
try to make reauth/register branches clearer in oidc
Currently there was a function that did a bunch of stuff,
finding the machine key, trying to find the node, reauthing
the node, returning some status, and it was called validate
which was very confusing.
This commit tries to split this into what to do if the node
exists, if it needs to register etc.
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
2024-10-02 14:50:17 +02:00
2026-02-06 21:45:32 +01:00
_ , err = db . ExecContext ( context . Background ( ) , string ( schemaContent ) )
2025-05-21 11:08:33 +02:00
return err
Redo OIDC configuration (#2020)
expand user, add claims to user
This commit expands the user table with additional fields that
can be retrieved from OIDC providers (and other places) and
uses this data in various tailscale response objects if it is
available.
This is the beginning of implementing
https://docs.google.com/document/d/1X85PMxIaVWDF6T_UPji3OeeUqVBcGj_uHRM5CI-AwlY/edit
trying to make OIDC more coherant and maintainable in addition
to giving the user a better experience and integration with a
provider.
remove usernames in magic dns, normalisation of emails
this commit removes the option to have usernames as part of MagicDNS
domains and headscale will now align with Tailscale, where there is a
root domain, and the machine name.
In addition, the various normalisation functions for dns names has been
made lighter not caring about username and special character that wont
occur.
Email are no longer normalised as part of the policy processing.
untagle oidc and regcache, use typed cache
This commits stops reusing the registration cache for oidc
purposes and switches the cache to be types and not use any
allowing the removal of a bunch of casting.
try to make reauth/register branches clearer in oidc
Currently there was a function that did a bunch of stuff,
finding the machine key, trying to find the node, reauthing
the node, returning some status, and it was called validate
which was very confusing.
This commit tries to split this into what to do if the node
exists, if it needs to register etc.
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
2024-10-02 14:50:17 +02:00
}
2024-11-18 17:33:46 +01:00
2024-11-23 11:19:52 +01:00
// requireConstraintFailed checks if the error is a constraint failure with
// either SQLite and PostgreSQL error messages.
func requireConstraintFailed ( t * testing . T , err error ) {
t . Helper ( )
require . Error ( t , err )
2026-02-06 21:45:32 +01:00
2024-11-23 11:19:52 +01:00
if ! strings . Contains ( err . Error ( ) , "UNIQUE constraint failed:" ) && ! strings . Contains ( err . Error ( ) , "violates unique constraint" ) {
require . Failf ( t , "expected error to contain a constraint failure, got: %s" , err . Error ( ) )
}
}
2024-11-18 17:33:46 +01:00
func TestConstraints ( t * testing . T ) {
tests := [ ] struct {
name string
run func ( * testing . T , * gorm . DB )
} {
{
name : "no-duplicate-username-if-no-oidc" ,
2026-02-06 21:45:32 +01:00
run : func ( t * testing . T , db * gorm . DB ) { //nolint:thelper
2024-12-19 13:10:10 +01:00
_ , err := CreateUser ( db , types . User { Name : "user1" } )
2024-11-18 17:33:46 +01:00
require . NoError ( t , err )
2024-12-19 13:10:10 +01:00
_ , err = CreateUser ( db , types . User { Name : "user1" } )
2024-11-23 11:19:52 +01:00
requireConstraintFailed ( t , err )
2024-11-18 17:33:46 +01:00
} ,
} ,
{
name : "no-oidc-duplicate-username-and-id" ,
2026-02-06 21:45:32 +01:00
run : func ( t * testing . T , db * gorm . DB ) { //nolint:thelper
2024-11-18 17:33:46 +01:00
user := types . User {
Model : gorm . Model { ID : 1 } ,
Name : "user1" ,
}
user . ProviderIdentifier = sql . NullString { String : "http://test.com/user1" , Valid : true }
err := db . Save ( & user ) . Error
require . NoError ( t , err )
user = types . User {
Model : gorm . Model { ID : 2 } ,
Name : "user1" ,
}
user . ProviderIdentifier = sql . NullString { String : "http://test.com/user1" , Valid : true }
err = db . Save ( & user ) . Error
2024-11-23 11:19:52 +01:00
requireConstraintFailed ( t , err )
2024-11-18 17:33:46 +01:00
} ,
} ,
{
name : "no-oidc-duplicate-id" ,
2026-02-06 21:45:32 +01:00
run : func ( t * testing . T , db * gorm . DB ) { //nolint:thelper
2024-11-18 17:33:46 +01:00
user := types . User {
Model : gorm . Model { ID : 1 } ,
Name : "user1" ,
}
user . ProviderIdentifier = sql . NullString { String : "http://test.com/user1" , Valid : true }
err := db . Save ( & user ) . Error
require . NoError ( t , err )
user = types . User {
Model : gorm . Model { ID : 2 } ,
Name : "user1.1" ,
}
user . ProviderIdentifier = sql . NullString { String : "http://test.com/user1" , Valid : true }
err = db . Save ( & user ) . Error
2024-11-23 11:19:52 +01:00
requireConstraintFailed ( t , err )
2024-11-18 17:33:46 +01:00
} ,
} ,
{
name : "allow-duplicate-username-cli-then-oidc" ,
2026-02-06 21:45:32 +01:00
run : func ( t * testing . T , db * gorm . DB ) { //nolint:thelper
2024-12-19 13:10:10 +01:00
_ , err := CreateUser ( db , types . User { Name : "user1" } ) // Create CLI username
2024-11-18 17:33:46 +01:00
require . NoError ( t , err )
user := types . User {
2024-11-22 17:45:46 +01:00
Name : "user1" ,
ProviderIdentifier : sql . NullString { String : "http://test.com/user1" , Valid : true } ,
2024-11-18 17:33:46 +01:00
}
err = db . Save ( & user ) . Error
require . NoError ( t , err )
} ,
} ,
{
name : "allow-duplicate-username-oidc-then-cli" ,
2026-02-06 21:45:32 +01:00
run : func ( t * testing . T , db * gorm . DB ) { //nolint:thelper
2024-11-18 17:33:46 +01:00
user := types . User {
2024-11-22 17:45:46 +01:00
Name : "user1" ,
ProviderIdentifier : sql . NullString { String : "http://test.com/user1" , Valid : true } ,
2024-11-18 17:33:46 +01:00
}
err := db . Save ( & user ) . Error
require . NoError ( t , err )
2024-12-19 13:10:10 +01:00
_ , err = CreateUser ( db , types . User { Name : "user1" } ) // Create CLI username
2024-11-18 17:33:46 +01:00
require . NoError ( t , err )
} ,
} ,
}
for _ , tt := range tests {
2024-11-23 11:19:52 +01:00
t . Run ( tt . name + "-postgres" , func ( t * testing . T ) {
db := newPostgresTestDB ( t )
tt . run ( t , db . DB . Debug ( ) )
} )
t . Run ( tt . name + "-sqlite" , func ( t * testing . T ) {
db , err := newSQLiteTestDB ( )
2024-11-18 17:33:46 +01:00
if err != nil {
t . Fatalf ( "creating database: %s" , err )
}
2024-11-22 17:45:46 +01:00
tt . run ( t , db . DB . Debug ( ) )
2024-11-18 17:33:46 +01:00
} )
}
}
2025-01-23 14:58:42 +01:00
2025-05-21 11:08:33 +02:00
// TestPostgresMigrationAndDataValidation tests specific PostgreSQL migration scenarios
// and validates data integrity after migration. All migrations that require data validation
// should be added here.
//
// TODO(kradalby): Convert to use plain text SQL dumps instead of binary .pssql dumps for consistency
// with SQLite tests and easier version control.
func TestPostgresMigrationAndDataValidation ( t * testing . T ) {
2025-01-23 14:58:42 +01:00
tests := [ ] struct {
name string
dbPath string
wantFunc func ( * testing . T , * HSDatabase )
2025-12-02 12:01:25 +01:00
} { }
2025-01-23 14:58:42 +01:00
for _ , tt := range tests {
t . Run ( tt . name , func ( t * testing . T ) {
u := newPostgresDBForTest ( t )
pgRestorePath , err := exec . LookPath ( "pg_restore" )
if err != nil {
t . Fatal ( "pg_restore not found in PATH. Please install it and ensure it is accessible." )
}
// Construct the pg_restore command
2026-02-06 21:45:32 +01:00
cmd := exec . CommandContext ( context . Background ( ) , pgRestorePath , "--verbose" , "--if-exists" , "--clean" , "--no-owner" , "--dbname" , u . String ( ) , tt . dbPath )
2025-01-23 14:58:42 +01:00
// Set the output streams
cmd . Stdout = os . Stdout
cmd . Stderr = os . Stderr
// Execute the command
err = cmd . Run ( )
if err != nil {
t . Fatalf ( "failed to restore postgres database: %s" , err )
}
2026-01-16 16:32:36 +00:00
db := newHeadscaleDBFromPostgresURL ( t , u )
2025-01-23 14:58:42 +01:00
if tt . wantFunc != nil {
tt . wantFunc ( t , db )
}
} )
}
}
2025-02-26 07:22:55 -08:00
func dbForTest ( t * testing . T ) * HSDatabase {
t . Helper ( )
2025-05-21 11:08:33 +02:00
return dbForTestWithPath ( t , "" )
}
func dbForTestWithPath ( t * testing . T , sqlFilePath string ) * HSDatabase {
t . Helper ( )
2025-02-26 07:22:55 -08:00
dbPath := t . TempDir ( ) + "/headscale_test.db"
2025-05-21 11:08:33 +02:00
// If SQL file path provided, validate and create database from it
if sqlFilePath != "" {
// Validate that the file is a SQL text file
if ! strings . HasSuffix ( sqlFilePath , ".sql" ) {
t . Fatalf ( "dbForTestWithPath only accepts .sql files, got: %s" , sqlFilePath )
}
err := createSQLiteFromSQLFile ( sqlFilePath , dbPath )
if err != nil {
t . Fatalf ( "setting up database from SQL file %s: %s" , sqlFilePath , err )
}
}
2025-02-26 07:22:55 -08:00
db , err := NewHeadscaleDatabase (
2026-01-21 19:40:29 +05:30
& types . Config {
Database : types . DatabaseConfig {
Type : "sqlite3" ,
Sqlite : types . SqliteConfig {
Path : dbPath ,
} ,
} ,
Policy : types . PolicyConfig {
Mode : types . PolicyModeDB ,
2025-02-26 07:22:55 -08:00
} ,
} ,
)
if err != nil {
t . Fatalf ( "setting up database: %s" , err )
}
2025-05-21 11:08:33 +02:00
if sqlFilePath != "" {
t . Logf ( "database set up from %s at: %s" , sqlFilePath , dbPath )
} else {
t . Logf ( "database set up at: %s" , dbPath )
}
2025-02-26 07:22:55 -08:00
return db
}
2025-05-21 11:08:33 +02:00
// TestSQLiteAllTestdataMigrations tests migration compatibility across all SQLite schemas
// in the testdata directory. It verifies they can be successfully migrated to the current
// schema version. This test only validates migration success, not data integrity.
//
2025-11-13 15:49:27 +01:00
// All test database files are SQL dumps (created with `sqlite3 headscale.db .dump`) generated
// with old Headscale binaries on empty databases (no user/node data). These dumps include the
// migration history in the `migrations` table, which allows the migration system to correctly
// skip already-applied migrations and only run new ones.
2025-05-21 11:08:33 +02:00
func TestSQLiteAllTestdataMigrations ( t * testing . T ) {
t . Parallel ( )
2026-02-06 21:45:32 +01:00
2025-05-21 11:08:33 +02:00
schemas , err := os . ReadDir ( "testdata/sqlite" )
require . NoError ( t , err )
t . Logf ( "loaded %d schemas" , len ( schemas ) )
for _ , schema := range schemas {
if schema . IsDir ( ) {
continue
}
t . Logf ( "validating: %s" , schema . Name ( ) )
t . Run ( schema . Name ( ) , func ( t * testing . T ) {
t . Parallel ( )
dbPath := t . TempDir ( ) + "/headscale_test.db"
// Setup a database with the old schema
schemaPath := filepath . Join ( "testdata/sqlite" , schema . Name ( ) )
err := createSQLiteFromSQLFile ( schemaPath , dbPath )
require . NoError ( t , err )
_ , err = NewHeadscaleDatabase (
2026-01-21 19:40:29 +05:30
& types . Config {
Database : types . DatabaseConfig {
Type : "sqlite3" ,
Sqlite : types . SqliteConfig {
Path : dbPath ,
} ,
} ,
Policy : types . PolicyConfig {
Mode : types . PolicyModeDB ,
2025-05-21 11:08:33 +02:00
} ,
} ,
)
require . NoError ( t , err )
} )
}
}