Add trojan inbound/outbound

This commit is contained in:
世界 2022-08-08 08:56:04 +08:00
parent df6635c620
commit 6d78cf6b58
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
19 changed files with 521 additions and 9 deletions

View file

@ -3,6 +3,7 @@ package main
import (
"context"
"os"
"path/filepath"
"testing"
"time"
@ -24,7 +25,7 @@ type DockerOptions struct {
Ports []uint16
Cmd []string
Env []string
Bind []string
Bind map[string]string
Stdin []byte
}
@ -67,6 +68,15 @@ func startDockerContainer(t *testing.T, options DockerOptions) {
}
}
if len(options.Bind) > 0 {
hostOptions.Binds = []string{}
for path, internalPath := range options.Bind {
path = filepath.Join("config", path)
path, _ = filepath.Abs(path)
hostOptions.Binds = append(hostOptions.Binds, path+":"+internalPath)
}
}
dockerContainer, err := dockerClient.ContainerCreate(context.Background(), &containerOptions, &hostOptions, nil, nil, "")
require.NoError(t, err)
t.Cleanup(func() {