12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package plugin
- import (
- "fmt"
- "github.com/fatedier/frp/test/e2e/framework"
- "github.com/fatedier/frp/test/e2e/framework/consts"
- "github.com/fatedier/frp/test/e2e/pkg/port"
- . "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",
- portName: port.GenName("Normal"),
- },
- {
- proxyName: "with-encryption",
- portName: port.GenName("WithEncryption"),
- extraConfig: "use_encryption = true",
- },
- {
- proxyName: "with-compression",
- portName: port.GenName("WithCompression"),
- extraConfig: "use_compression = true",
- },
- {
- proxyName: "with-encryption-and-compression",
- portName: port.GenName("WithEncryptionAndCompression"),
- 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 {
- framework.ExpectResponse(
- framework.NewRequest().Port(f.PortByName(test.portName)),
- []byte(consts.TestString),
- test.proxyName,
- )
- }
- })
- })
- })
|