mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
91 lines
1.7 KiB
Go
91 lines
1.7 KiB
Go
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)
|
|
}
|
|
})
|
|
}
|
|
}
|