27 lines
601 B
Go
27 lines
601 B
Go
package trace
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
"testing"
|
|
)
|
|
|
|
func TestConfig_getEndpointHost(t *testing.T) {
|
|
logx.Disable()
|
|
|
|
c1 := Config{
|
|
Name: "not UDP",
|
|
Endpoint: "http://localhost:14268/api/traces",
|
|
Batcher: kindJaegerUdp,
|
|
}
|
|
c2 := Config{
|
|
Name: "UDP",
|
|
Endpoint: "localhost:6831",
|
|
Batcher: kindJaegerUdp,
|
|
}
|
|
assert.NotEqual(t, "localhost", c1.getEndpointHost())
|
|
assert.NotEqual(t, "14268", c1.getEndpointPort())
|
|
assert.Equal(t, "localhost", c2.getEndpointHost())
|
|
assert.Equal(t, "6831", c2.getEndpointPort())
|
|
}
|