dean comments

This commit is contained in:
Colin Adler 2024-04-26 17:41:13 +00:00
parent ce6aa43299
commit b3d14b8e8a
1 changed files with 53 additions and 32 deletions

View File

@ -42,20 +42,24 @@ func TestMain(m *testing.M) {
} }
var tests = []Test{{ var tests = []Test{{
Name: "Normal", Name: "Normal",
DERPMap: DERPMapTailscale, DERPMap: DERPMapTailscale,
Coordinator: CoordinatorInMemory, Coordinator: CoordinatorInMemory,
NetworkSetupParent: NetworkSetupDefault, Parent: Parent{
NetworkSetupChild: NetworkSetupDefault, NetworkSetup: NetworkSetupDefault,
TailnetSetupParent: TailnetSetupDRPC, TailnetSetup: TailnetSetupDRPC,
TailnetSetupChild: TailnetSetupDRPC, Run: func(ctx context.Context, t *testing.T, opts ParentOpts) {
RunParent: func(ctx context.Context, t *testing.T, opts ParentOpts) { reach := opts.Conn.AwaitReachable(ctx, tailnet.IPFromUUID(opts.AgentID))
reach := opts.Conn.AwaitReachable(ctx, tailnet.IPFromUUID(opts.AgentID)) assert.True(t, reach)
assert.True(t, reach) },
}, },
RunChild: func(ctx context.Context, t *testing.T, opts ChildOpts) { Child: Child{
// wait until the parent kills us NetworkSetup: NetworkSetupDefault,
<-make(chan struct{}) TailnetSetup: TailnetSetupDRPC,
Run: func(ctx context.Context, t *testing.T, opts ChildOpts) {
// wait until the parent kills us
<-make(chan struct{})
},
}, },
}} }}
@ -70,10 +74,10 @@ func TestIntegration(t *testing.T) {
require.NoError(t, err) require.NoError(t, err)
test := tests[*childTestID] test := tests[*childTestID]
test.NetworkSetupChild(t) test.Child.NetworkSetup(t)
dm := test.DERPMap(ctx, t) dm := test.DERPMap(ctx, t)
conn := test.TailnetSetupChild(ctx, t, logger, agentID, uuid.Nil, *childCoordinateURL, dm) conn := test.Child.TailnetSetup(ctx, t, logger, agentID, uuid.Nil, *childCoordinateURL, dm)
test.RunChild(ctx, t, ChildOpts{ test.Child.Run(ctx, t, ChildOpts{
Logger: logger, Logger: logger,
Conn: conn, Conn: conn,
AgentID: agentID, AgentID: agentID,
@ -92,9 +96,9 @@ func TestIntegration(t *testing.T) {
_, coordURL := test.Coordinator(t, logger, dm) _, coordURL := test.Coordinator(t, logger, dm)
child, waitChild := execChild(ctx, id, coordURL, childID) child, waitChild := execChild(ctx, id, coordURL, childID)
test.NetworkSetupParent(t) test.Parent.NetworkSetup(t)
conn := test.TailnetSetupParent(ctx, t, logger, parentID, childID, coordURL, dm) conn := test.Parent.TailnetSetup(ctx, t, logger, parentID, childID, coordURL, dm)
test.RunParent(ctx, t, ParentOpts{ test.Parent.Run(ctx, t, ParentOpts{
Logger: logger, Logger: logger,
Conn: conn, Conn: conn,
ClientID: parentID, ClientID: parentID,
@ -117,26 +121,43 @@ type Test struct {
// it on. // it on.
Coordinator func(t *testing.T, logger slog.Logger, dm *tailcfg.DERPMap) (coord tailnet.Coordinator, url string) Coordinator func(t *testing.T, logger slog.Logger, dm *tailcfg.DERPMap) (coord tailnet.Coordinator, url string)
// NetworkSetup functions are run before all test code on both the parent Parent Parent
// and the child. It can be used to setup a netns. Child Child
NetworkSetupParent func(t *testing.T) }
NetworkSetupChild func(t *testing.T)
// TailnetSetup functions create tailnet networks. // Parent is the struct containing all of the parent specific configurations.
TailnetSetupParent func( // Functions are invoked in order of struct definition.
type Parent struct {
// NetworkSetup is run before all test code. It can be used to setup
// networking scenarios.
NetworkSetup func(t *testing.T)
// TailnetSetup creates a tailnet network.
TailnetSetup func(
ctx context.Context, t *testing.T, logger slog.Logger, ctx context.Context, t *testing.T, logger slog.Logger,
id, agentID uuid.UUID, coordURL string, dm *tailcfg.DERPMap, id, agentID uuid.UUID, coordURL string, dm *tailcfg.DERPMap,
) *tailnet.Conn ) *tailnet.Conn
TailnetSetupChild func(
Run func(ctx context.Context, t *testing.T, opts ParentOpts)
}
// Child is the struct containing all of the child specific configurations.
// Functions are invoked in order of struct definition.
type Child struct {
// NetworkSetup is run before all test code. It can be used to setup
// networking scenarios.
NetworkSetup func(t *testing.T)
// TailnetSetup creates a tailnet network.
TailnetSetup func(
ctx context.Context, t *testing.T, logger slog.Logger, ctx context.Context, t *testing.T, logger slog.Logger,
id, _ uuid.UUID, coordURL string, dm *tailcfg.DERPMap, id, agentID uuid.UUID, coordURL string, dm *tailcfg.DERPMap,
) *tailnet.Conn ) *tailnet.Conn
// Run functions run the actual test. Parents and children run in separate // Run runs the actual test. Parents and children run in separate processes,
// processes, so it's important to ensure no communication happens over // so it's important to ensure no communication happens over memory between
// memory between these two functions. // run functions of parents and children.
RunParent func(ctx context.Context, t *testing.T, opts ParentOpts) Run func(ctx context.Context, t *testing.T, opts ChildOpts)
RunChild func(ctx context.Context, t *testing.T, opts ChildOpts)
} }
type ParentOpts struct { type ParentOpts struct {