1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00
juanfont.headscale/app_test.go

79 lines
1.3 KiB
Go
Raw Normal View History

package headscale
import (
2022-09-02 09:16:19 +02:00
"net/netip"
"os"
"testing"
"gopkg.in/check.v1"
)
func Test(t *testing.T) {
check.TestingT(t)
}
var _ = check.Suite(&Suite{})
type Suite struct{}
2021-11-13 09:36:45 +01:00
var (
tmpDir string
2021-11-15 17:16:04 +01:00
app Headscale
2021-11-13 09:36:45 +01:00
)
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
2022-08-09 23:21:19 +02:00
tmpDir, err = os.MkdirTemp("", "autoygg-client-test")
if err != nil {
c.Fatal(err)
}
cfg := Config{
2022-09-02 09:16:19 +02:00
IPPrefixes: []netip.Prefix{
netip.MustParsePrefix("10.27.0.0/23"),
2022-01-16 14:16:59 +01:00
},
}
2021-11-15 17:16:04 +01:00
app = Headscale{
2022-06-05 17:47:26 +02:00
cfg: &cfg,
dbType: "sqlite3",
dbString: tmpDir + "/headscale_test.db",
}
2021-11-15 17:16:04 +01:00
err = app.initDB()
if err != nil {
c.Fatal(err)
}
2021-11-15 17:16:04 +01:00
db, err := app.openDB()
2021-07-04 21:40:46 +02:00
if err != nil {
c.Fatal(err)
}
2021-11-15 17:16:04 +01:00
app.db = db
}
2022-01-31 13:18:50 +01:00
// Enusre an error is returned when an invalid auth mode
// is supplied.
2022-01-31 16:27:43 +01:00
func (s *Suite) TestInvalidClientAuthMode(c *check.C) {
2022-02-21 16:09:23 +01:00
_, isValid := LookupTLSClientAuthMode("invalid")
c.Assert(isValid, check.Equals, false)
2022-01-31 13:18:50 +01:00
}
2022-01-31 16:27:43 +01:00
// Ensure that all client auth modes return a nil error.
func (s *Suite) TestAuthModes(c *check.C) {
modes := []string{"disabled", "relaxed", "enforced"}
2022-01-31 13:18:50 +01:00
2022-01-31 16:27:43 +01:00
for _, v := range modes {
2022-02-21 16:09:23 +01:00
_, isValid := LookupTLSClientAuthMode(v)
c.Assert(isValid, check.Equals, true)
2022-01-31 16:27:43 +01:00
}
2022-01-31 13:18:50 +01:00
}