mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 04:57:40 +03:00
feat: udp port hopping
This commit is contained in:
parent
1ea7c515ae
commit
3e5eccd6e3
9 changed files with 1947 additions and 43 deletions
1270
app/internal/url/url.go
Normal file
1270
app/internal/url/url.go
Normal file
File diff suppressed because it is too large
Load diff
91
app/internal/url/url_test.go
Normal file
91
app/internal/url/url_test.go
Normal file
|
@ -0,0 +1,91 @@
|
|||
package url
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestParse(t *testing.T) {
|
||||
type args struct {
|
||||
rawURL string
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
args args
|
||||
want *URL
|
||||
wantErr bool
|
||||
}{
|
||||
{
|
||||
name: "no port",
|
||||
args: args{
|
||||
rawURL: "hysteria2://ganggang@icecreamsogood/",
|
||||
},
|
||||
want: &URL{
|
||||
Scheme: "hysteria2",
|
||||
User: User("ganggang"),
|
||||
Host: "icecreamsogood",
|
||||
Path: "/",
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "single port",
|
||||
args: args{
|
||||
rawURL: "hysteria2://yesyes@icecreamsogood:8888/",
|
||||
},
|
||||
want: &URL{
|
||||
Scheme: "hysteria2",
|
||||
User: User("yesyes"),
|
||||
Host: "icecreamsogood:8888",
|
||||
Path: "/",
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "multi port",
|
||||
args: args{
|
||||
rawURL: "hysteria2://darkness@laplus.org:8888,9999,11111/",
|
||||
},
|
||||
want: &URL{
|
||||
Scheme: "hysteria2",
|
||||
User: User("darkness"),
|
||||
Host: "laplus.org:8888,9999,11111",
|
||||
Path: "/",
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "range port",
|
||||
args: args{
|
||||
rawURL: "hysteria2://darkness@laplus.org:8888-9999/",
|
||||
},
|
||||
want: &URL{
|
||||
Scheme: "hysteria2",
|
||||
User: User("darkness"),
|
||||
Host: "laplus.org:8888-9999",
|
||||
Path: "/",
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "both",
|
||||
args: args{
|
||||
rawURL: "hysteria2://gawr:gura@atlantis.moe:443,7788-8899,10010/",
|
||||
},
|
||||
want: &URL{
|
||||
Scheme: "hysteria2",
|
||||
User: UserPassword("gawr", "gura"),
|
||||
Host: "atlantis.moe:443,7788-8899,10010",
|
||||
Path: "/",
|
||||
},
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
got, err := Parse(tt.args.rawURL)
|
||||
if (err != nil) != tt.wantErr {
|
||||
t.Errorf("Parse() error = %v, wantErr %v", err, tt.wantErr)
|
||||
return
|
||||
}
|
||||
if !reflect.DeepEqual(got, tt.want) {
|
||||
t.Errorf("Parse() got = %v, want %v", got, tt.want)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue