gatus/client/client_test.go

29 lines
881 B
Go
Raw Permalink Normal View History

package client
import (
"testing"
)
func TestGetHttpClient(t *testing.T) {
2020-10-23 22:29:20 +02:00
if secureHTTPClient != nil {
t.Error("secureHTTPClient should've been nil since it hasn't been called a single time yet")
}
2020-10-23 22:29:20 +02:00
if insecureHTTPClient != nil {
t.Error("insecureHTTPClient should've been nil since it hasn't been called a single time yet")
}
2020-10-23 22:29:20 +02:00
_ = GetHTTPClient(false)
if secureHTTPClient == nil {
t.Error("secureHTTPClient shouldn't have been nil, since it has been called once")
}
2020-10-23 22:29:20 +02:00
if insecureHTTPClient != nil {
t.Error("insecureHTTPClient should've been nil since it hasn't been called a single time yet")
}
2020-10-23 22:29:20 +02:00
_ = GetHTTPClient(true)
if secureHTTPClient == nil {
t.Error("secureHTTPClient shouldn't have been nil, since it has been called once")
}
2020-10-23 22:29:20 +02:00
if insecureHTTPClient == nil {
t.Error("insecureHTTPClient shouldn't have been nil, since it has been called once")
}
}