Skip to content

Commit

Permalink
Switch from hacking buildtags to selecting tests
Browse files Browse the repository at this point in the history
Signed-off-by: Kristoffer Dalby <[email protected]>
  • Loading branch information
kradalby committed Oct 18, 2022
1 parent 32c21a0 commit c6f82c3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 18 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ test_integration_cli:
-v ~/.cache/hs-integration-go:/go \
-v $$PWD:$$PWD -w $$PWD \
-v /var/run/docker.sock:/var/run/docker.sock golang:1 \
go test -failfast -tags integration_cli,integration -timeout 30m -count=1 ./...
go test -failfast -timeout 30m -count=1 -run IntegrationCLI ./...

test_integration_derp:
docker network rm $$(docker network ls --filter name=headscale --quiet) || true
Expand All @@ -44,7 +44,7 @@ test_integration_derp:
-v ~/.cache/hs-integration-go:/go \
-v $$PWD:$$PWD -w $$PWD \
-v /var/run/docker.sock:/var/run/docker.sock golang:1 \
go test -failfast -tags integration_derp,integration -timeout 30m -count=1 ./...
go test -failfast -timeout 30m -count=1 -run IntegrationDERP ./...

test_integration_general:
docker network rm $$(docker network ls --filter name=headscale --quiet) || true
Expand All @@ -54,7 +54,7 @@ test_integration_general:
-v ~/.cache/hs-integration-go:/go \
-v $$PWD:$$PWD -w $$PWD \
-v /var/run/docker.sock:/var/run/docker.sock golang:1 \
go test -failfast -tags integration_general,integration -timeout 30m -count=1 ./...
go test -failfast -timeout 30m -count=1 -run IntegrationGeneral ./...

test_integration_oidc:
docker network rm $$(docker network ls --filter name=headscale --quiet) || true
Expand All @@ -64,7 +64,7 @@ test_integration_oidc:
-v ~/.cache/hs-integration-go:/go \
-v $$PWD:$$PWD -w $$PWD \
-v /var/run/docker.sock:/var/run/docker.sock golang:1 \
go test -failfast -tags integration_oidc,integration -timeout 30m -count=1 ./...
go test -failfast -timeout 30m -count=1 -run IntegrationOIDC ./...

coverprofile_func:
go tool cover -func=coverage.out
Expand Down
4 changes: 1 addition & 3 deletions integration_cli_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
//go:build integration_cli

package headscale

import (
Expand Down Expand Up @@ -28,7 +26,7 @@ type IntegrationCLITestSuite struct {
env []string
}

func TestCLIIntegrationTestSuite(t *testing.T) {
func TestIntegrationCLITestSuite(t *testing.T) {
s := new(IntegrationCLITestSuite)

suite.Run(t, s)
Expand Down
2 changes: 0 additions & 2 deletions integration_common_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
//go:build integration

package headscale

import (
Expand Down
4 changes: 1 addition & 3 deletions integration_embedded_derp_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
//go:build integration_derp

package headscale

import (
Expand Down Expand Up @@ -46,7 +44,7 @@ type IntegrationDERPTestSuite struct {
joinWaitGroup sync.WaitGroup
}

func TestDERPIntegrationTestSuite(t *testing.T) {
func TestIntegrationDERPTestSuite(t *testing.T) {
saveLogs, err := GetEnvBool("HEADSCALE_INTEGRATION_SAVE_LOG")
if err != nil {
saveLogs = false
Expand Down
4 changes: 1 addition & 3 deletions integration_general_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
//go:build integration_general

package headscale

import (
Expand Down Expand Up @@ -41,7 +39,7 @@ type IntegrationTestSuite struct {
joinWaitGroup sync.WaitGroup
}

func TestIntegrationTestSuite(t *testing.T) {
func TestIntegrationGeneralTestSuite(t *testing.T) {
saveLogs, err := GetEnvBool("HEADSCALE_INTEGRATION_SAVE_LOG")
if err != nil {
saveLogs = false
Expand Down
4 changes: 1 addition & 3 deletions integration_oidc_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
//go:build integration_oidc

package headscale

import (
Expand Down Expand Up @@ -45,7 +43,7 @@ type IntegrationOIDCTestSuite struct {
joinWaitGroup sync.WaitGroup
}

func TestOIDCIntegrationTestSuite(t *testing.T) {
func TestIntegrationOIDCTestSuite(t *testing.T) {
saveLogs, err := GetEnvBool("HEADSCALE_INTEGRATION_SAVE_LOG")
if err != nil {
saveLogs = false
Expand Down

0 comments on commit c6f82c3

Please sign in to comment.