forked from fatedier/frp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
314 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
package ci | ||
|
||
import ( | ||
"os" | ||
"testing" | ||
"time" | ||
|
||
"github.com/fatedier/frp/tests/config" | ||
"github.com/fatedier/frp/tests/consts" | ||
"github.com/fatedier/frp/tests/util" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
const FRPS_TLS_TCP_CONF = ` | ||
[common] | ||
bind_addr = 0.0.0.0 | ||
bind_port = 20000 | ||
log_file = console | ||
log_level = debug | ||
token = 123456 | ||
` | ||
|
||
const FRPC_TLS_TCP_CONF = ` | ||
[common] | ||
server_addr = 127.0.0.1 | ||
server_port = 20000 | ||
log_file = console | ||
log_level = debug | ||
token = 123456 | ||
protocol = tcp | ||
tls_enable = true | ||
[tcp] | ||
type = tcp | ||
local_port = 10701 | ||
remote_port = 20801 | ||
` | ||
|
||
func TestTlsOverTCP(t *testing.T) { | ||
assert := assert.New(t) | ||
frpsCfgPath, err := config.GenerateConfigFile(consts.FRPS_NORMAL_CONFIG, FRPS_TLS_TCP_CONF) | ||
if assert.NoError(err) { | ||
defer os.Remove(frpsCfgPath) | ||
} | ||
|
||
frpcCfgPath, err := config.GenerateConfigFile(consts.FRPC_NORMAL_CONFIG, FRPC_TLS_TCP_CONF) | ||
if assert.NoError(err) { | ||
defer os.Remove(frpcCfgPath) | ||
} | ||
|
||
frpsProcess := util.NewProcess(consts.FRPS_BIN_PATH, []string{"-c", frpsCfgPath}) | ||
err = frpsProcess.Start() | ||
if assert.NoError(err) { | ||
defer frpsProcess.Stop() | ||
} | ||
|
||
time.Sleep(100 * time.Millisecond) | ||
|
||
frpcProcess := util.NewProcess(consts.FRPC_BIN_PATH, []string{"-c", frpcCfgPath}) | ||
err = frpcProcess.Start() | ||
if assert.NoError(err) { | ||
defer frpcProcess.Stop() | ||
} | ||
time.Sleep(250 * time.Millisecond) | ||
|
||
// test tcp | ||
res, err := util.SendTcpMsg("127.0.0.1:20801", consts.TEST_TCP_ECHO_STR) | ||
assert.NoError(err) | ||
assert.Equal(consts.TEST_TCP_ECHO_STR, res) | ||
} | ||
|
||
const FRPS_TLS_KCP_CONF = ` | ||
[common] | ||
bind_addr = 0.0.0.0 | ||
bind_port = 20000 | ||
kcp_bind_port = 20000 | ||
log_file = console | ||
log_level = debug | ||
token = 123456 | ||
` | ||
|
||
const FRPC_TLS_KCP_CONF = ` | ||
[common] | ||
server_addr = 127.0.0.1 | ||
server_port = 20000 | ||
log_file = console | ||
log_level = debug | ||
token = 123456 | ||
protocol = kcp | ||
tls_enable = true | ||
[tcp] | ||
type = tcp | ||
local_port = 10701 | ||
remote_port = 20801 | ||
` | ||
|
||
func TestTLSOverKCP(t *testing.T) { | ||
assert := assert.New(t) | ||
frpsCfgPath, err := config.GenerateConfigFile(consts.FRPS_NORMAL_CONFIG, FRPS_TLS_KCP_CONF) | ||
if assert.NoError(err) { | ||
defer os.Remove(frpsCfgPath) | ||
} | ||
|
||
frpcCfgPath, err := config.GenerateConfigFile(consts.FRPC_NORMAL_CONFIG, FRPC_TLS_KCP_CONF) | ||
if assert.NoError(err) { | ||
defer os.Remove(frpcCfgPath) | ||
} | ||
|
||
frpsProcess := util.NewProcess(consts.FRPS_BIN_PATH, []string{"-c", frpsCfgPath}) | ||
err = frpsProcess.Start() | ||
if assert.NoError(err) { | ||
defer frpsProcess.Stop() | ||
} | ||
|
||
time.Sleep(200 * time.Millisecond) | ||
|
||
frpcProcess := util.NewProcess(consts.FRPC_BIN_PATH, []string{"-c", frpcCfgPath}) | ||
err = frpcProcess.Start() | ||
if assert.NoError(err) { | ||
defer frpcProcess.Stop() | ||
} | ||
time.Sleep(500 * time.Millisecond) | ||
|
||
// test tcp | ||
res, err := util.SendTcpMsg("127.0.0.1:20801", consts.TEST_TCP_ECHO_STR) | ||
assert.NoError(err) | ||
assert.Equal(consts.TEST_TCP_ECHO_STR, res) | ||
} | ||
|
||
const FRPS_TLS_WS_CONF = ` | ||
[common] | ||
bind_addr = 0.0.0.0 | ||
bind_port = 20000 | ||
log_file = console | ||
log_level = debug | ||
token = 123456 | ||
` | ||
|
||
const FRPC_TLS_WS_CONF = ` | ||
[common] | ||
server_addr = 127.0.0.1 | ||
server_port = 20000 | ||
log_file = console | ||
log_level = debug | ||
token = 123456 | ||
protocol = websocket | ||
tls_enable = true | ||
[tcp] | ||
type = tcp | ||
local_port = 10701 | ||
remote_port = 20801 | ||
` | ||
|
||
func TestTLSOverWebsocket(t *testing.T) { | ||
assert := assert.New(t) | ||
frpsCfgPath, err := config.GenerateConfigFile(consts.FRPS_NORMAL_CONFIG, FRPS_TLS_WS_CONF) | ||
if assert.NoError(err) { | ||
defer os.Remove(frpsCfgPath) | ||
} | ||
|
||
frpcCfgPath, err := config.GenerateConfigFile(consts.FRPC_NORMAL_CONFIG, FRPC_TLS_WS_CONF) | ||
if assert.NoError(err) { | ||
defer os.Remove(frpcCfgPath) | ||
} | ||
|
||
frpsProcess := util.NewProcess(consts.FRPS_BIN_PATH, []string{"-c", frpsCfgPath}) | ||
err = frpsProcess.Start() | ||
if assert.NoError(err) { | ||
defer frpsProcess.Stop() | ||
} | ||
|
||
time.Sleep(200 * time.Millisecond) | ||
|
||
frpcProcess := util.NewProcess(consts.FRPC_BIN_PATH, []string{"-c", frpcCfgPath}) | ||
err = frpcProcess.Start() | ||
if assert.NoError(err) { | ||
defer frpcProcess.Stop() | ||
} | ||
time.Sleep(500 * time.Millisecond) | ||
|
||
// test tcp | ||
res, err := util.SendTcpMsg("127.0.0.1:20801", consts.TEST_TCP_ECHO_STR) | ||
assert.NoError(err) | ||
assert.Equal(consts.TEST_TCP_ECHO_STR, res) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.