2020-09-07 14:57:23 +08:00
|
|
|
package plugin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/fatedier/frp/test/e2e/framework"
|
|
|
|
"github.com/fatedier/frp/test/e2e/framework/consts"
|
2021-03-31 16:57:39 +08:00
|
|
|
"github.com/fatedier/frp/test/e2e/pkg/port"
|
2020-09-07 14:57:23 +08:00
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("[Feature: Client-Plugins]", func() {
|
|
|
|
f := framework.NewDefaultFramework()
|
|
|
|
|
|
|
|
Describe("UnixDomainSocket", func() {
|
|
|
|
It("Expose a unix domain socket echo server", func() {
|
|
|
|
serverConf := consts.DefaultServerConfig
|
|
|
|
clientConf := consts.DefaultClientConfig
|
|
|
|
|
|
|
|
getProxyConf := func(proxyName string, portName string, extra string) string {
|
|
|
|
return fmt.Sprintf(`
|
|
|
|
[%s]
|
|
|
|
type = tcp
|
|
|
|
remote_port = {{ .%s }}
|
|
|
|
plugin = unix_domain_socket
|
|
|
|
plugin_unix_path = {{ .%s }}
|
|
|
|
`+extra, proxyName, portName, framework.UDSEchoServerAddr)
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
proxyName string
|
|
|
|
portName string
|
|
|
|
extraConfig string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
proxyName: "normal",
|
2021-03-31 16:57:39 +08:00
|
|
|
portName: port.GenName("Normal"),
|
2020-09-07 14:57:23 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
proxyName: "with-encryption",
|
2021-03-31 16:57:39 +08:00
|
|
|
portName: port.GenName("WithEncryption"),
|
2020-09-07 14:57:23 +08:00
|
|
|
extraConfig: "use_encryption = true",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
proxyName: "with-compression",
|
2021-03-31 16:57:39 +08:00
|
|
|
portName: port.GenName("WithCompression"),
|
2020-09-07 14:57:23 +08:00
|
|
|
extraConfig: "use_compression = true",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
proxyName: "with-encryption-and-compression",
|
2021-03-31 16:57:39 +08:00
|
|
|
portName: port.GenName("WithEncryptionAndCompression"),
|
2020-09-07 14:57:23 +08:00
|
|
|
extraConfig: `
|
|
|
|
use_encryption = true
|
|
|
|
use_compression = true
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// build all client config
|
|
|
|
for _, test := range tests {
|
|
|
|
clientConf += getProxyConf(test.proxyName, test.portName, test.extraConfig) + "\n"
|
|
|
|
}
|
|
|
|
// run frps and frpc
|
|
|
|
f.RunProcesses([]string{serverConf}, []string{clientConf})
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2021-03-31 16:57:39 +08:00
|
|
|
framework.ExpectResponse(
|
|
|
|
framework.NewRequest().Port(f.PortByName(test.portName)),
|
|
|
|
[]byte(consts.TestString),
|
|
|
|
test.proxyName,
|
|
|
|
)
|
2020-09-07 14:57:23 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|