|
|
@ -18,17 +18,17 @@ func TestEndPoint(t *testing.T) { |
|
|
|
// TODO: Add test cases.
|
|
|
|
// TODO: Add test cases.
|
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "grpc://127.0.0.1?isSecure=false", |
|
|
|
name: "grpc://127.0.0.1?isSecure=false", |
|
|
|
args: args{NewEndpoint("grpc", "127.0.0.1", false)}, |
|
|
|
args: args{&url.URL{Scheme: "grpc", Host: "127.0.0.1", RawQuery: "isSecure=false"}}, |
|
|
|
want: false, |
|
|
|
want: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "grpc://127.0.0.1?isSecure=true", |
|
|
|
name: "grpc://127.0.0.1?isSecure=true", |
|
|
|
args: args{NewEndpoint("http", "127.0.0.1", true)}, |
|
|
|
args: args{&url.URL{Scheme: "grpc", Host: "127.0.0.1", RawQuery: "isSecure=true"}}, |
|
|
|
want: true, |
|
|
|
want: true, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "grpc://127.0.0.1", |
|
|
|
name: "grpc://127.0.0.1", |
|
|
|
args: args{NewEndpoint("grpc", "localhost", false)}, |
|
|
|
args: args{&url.URL{Scheme: "grpc", Host: "127.0.0.1"}}, |
|
|
|
want: false, |
|
|
|
want: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
@ -43,9 +43,8 @@ func TestEndPoint(t *testing.T) { |
|
|
|
|
|
|
|
|
|
|
|
func TestNewEndpoint(t *testing.T) { |
|
|
|
func TestNewEndpoint(t *testing.T) { |
|
|
|
type args struct { |
|
|
|
type args struct { |
|
|
|
scheme string |
|
|
|
scheme string |
|
|
|
host string |
|
|
|
host string |
|
|
|
isSecure bool |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
tests := []struct { |
|
|
|
tests := []struct { |
|
|
|
name string |
|
|
|
name string |
|
|
@ -54,18 +53,23 @@ func TestNewEndpoint(t *testing.T) { |
|
|
|
}{ |
|
|
|
}{ |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "https://github.com/go-kratos/kratos/", |
|
|
|
name: "https://github.com/go-kratos/kratos/", |
|
|
|
args: args{"https", "github.com/go-kratos/kratos/", false}, |
|
|
|
args: args{"https", "github.com/go-kratos/kratos/"}, |
|
|
|
want: &url.URL{Scheme: "https", Host: "github.com/go-kratos/kratos/"}, |
|
|
|
want: &url.URL{Scheme: "https", Host: "github.com/go-kratos/kratos/"}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "https://go-kratos.dev/", |
|
|
|
name: "https://go-kratos.dev/", |
|
|
|
args: args{"https", "go-kratos.dev/", true}, |
|
|
|
args: args{"https", "go-kratos.dev/"}, |
|
|
|
want: &url.URL{Scheme: "https", Host: "go-kratos.dev/", RawQuery: "isSecure=true"}, |
|
|
|
want: &url.URL{Scheme: "https", Host: "go-kratos.dev/"}, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
name: "https://www.google.com/", |
|
|
|
|
|
|
|
args: args{"https", "www.google.com/"}, |
|
|
|
|
|
|
|
want: &url.URL{Scheme: "https", Host: "www.google.com/"}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
for _, tt := range tests { |
|
|
|
for _, tt := range tests { |
|
|
|
t.Run(tt.name, func(t *testing.T) { |
|
|
|
t.Run(tt.name, func(t *testing.T) { |
|
|
|
if got := NewEndpoint(tt.args.scheme, tt.args.host, tt.args.isSecure); !reflect.DeepEqual(got, tt.want) { |
|
|
|
if got := NewEndpoint(tt.args.scheme, tt.args.host); !reflect.DeepEqual(got, tt.want) { |
|
|
|
t.Errorf("NewEndpoint() = %v, want %v", got, tt.want) |
|
|
|
t.Errorf("NewEndpoint() = %v, want %v", got, tt.want) |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
@ -76,7 +80,6 @@ func TestParseEndpoint(t *testing.T) { |
|
|
|
type args struct { |
|
|
|
type args struct { |
|
|
|
endpoints []string |
|
|
|
endpoints []string |
|
|
|
scheme string |
|
|
|
scheme string |
|
|
|
isSecure bool |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
tests := []struct { |
|
|
|
tests := []struct { |
|
|
|
name string |
|
|
|
name string |
|
|
@ -86,20 +89,46 @@ func TestParseEndpoint(t *testing.T) { |
|
|
|
}{ |
|
|
|
}{ |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "kratos", |
|
|
|
name: "kratos", |
|
|
|
args: args{endpoints: []string{"https://github.com/go-kratos/kratos?isSecure=true"}, scheme: "https", isSecure: true}, |
|
|
|
args: args{endpoints: []string{"https://github.com/go-kratos/kratos"}, scheme: "https"}, |
|
|
|
want: "github.com", |
|
|
|
want: "github.com", |
|
|
|
wantErr: false, |
|
|
|
wantErr: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "test", |
|
|
|
name: "test", |
|
|
|
args: args{endpoints: []string{"https://go-kratos.dev/"}, scheme: "http", isSecure: true}, |
|
|
|
args: args{endpoints: []string{"http://go-kratos.dev/"}, scheme: "https"}, |
|
|
|
|
|
|
|
want: "", |
|
|
|
|
|
|
|
wantErr: false, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
name: "localhost:8080", |
|
|
|
|
|
|
|
args: args{endpoints: []string{"grpcs://localhost:8080/"}, scheme: "grpcs"}, |
|
|
|
|
|
|
|
want: "localhost:8080", |
|
|
|
|
|
|
|
wantErr: false, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
name: "localhost:8081", |
|
|
|
|
|
|
|
args: args{endpoints: []string{"grpcs://localhost:8080/"}, scheme: "grpc"}, |
|
|
|
want: "", |
|
|
|
want: "", |
|
|
|
wantErr: false, |
|
|
|
wantErr: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Legacy
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
name: "google", |
|
|
|
|
|
|
|
args: args{endpoints: []string{"grpc://www.google.com/?isSecure=true"}, scheme: "grpcs"}, |
|
|
|
|
|
|
|
want: "www.google.com", |
|
|
|
|
|
|
|
wantErr: false, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
name: "baidu", |
|
|
|
|
|
|
|
args: args{endpoints: []string{"http://www.baidu.com/?isSecure=true"}, scheme: "https"}, |
|
|
|
|
|
|
|
want: "www.baidu.com", |
|
|
|
|
|
|
|
wantErr: false, |
|
|
|
|
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
for _, tt := range tests { |
|
|
|
for _, tt := range tests { |
|
|
|
t.Run(tt.name, func(t *testing.T) { |
|
|
|
t.Run(tt.name, func(t *testing.T) { |
|
|
|
got, err := ParseEndpoint(tt.args.endpoints, tt.args.scheme, tt.args.isSecure) |
|
|
|
got, err := ParseEndpoint(tt.args.endpoints, tt.args.scheme) |
|
|
|
if (err != nil) != tt.wantErr { |
|
|
|
if (err != nil) != tt.wantErr { |
|
|
|
t.Errorf("ParseEndpoint() error = %v, wantErr %v", err, tt.wantErr) |
|
|
|
t.Errorf("ParseEndpoint() error = %v, wantErr %v", err, tt.wantErr) |
|
|
|
return |
|
|
|
return |
|
|
|