mirror of
https://github.com/prometheus/prometheus
synced 2025-04-11 03:52:13 +00:00
vultr: minor fixups
Signed-off-by: Julien Pivotto <roidelapluie@o11y.eu>
This commit is contained in:
parent
3ef153b00c
commit
c9d4e5fc94
@ -27,25 +27,25 @@ type SDMock struct {
|
|||||||
Mux *http.ServeMux
|
Mux *http.ServeMux
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewSDMock returns a new SDMock.
|
// NewSDMock returns a new Vultr mock server.
|
||||||
func NewSDMock(t *testing.T) *SDMock {
|
func NewSDMock(t *testing.T) *SDMock {
|
||||||
return &SDMock{
|
return &SDMock{
|
||||||
t: t,
|
t: t,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Endpoint returns the URI to the mock server
|
// Endpoint returns the URI to the mock server.
|
||||||
func (m *SDMock) Endpoint() string {
|
func (m *SDMock) Endpoint() string {
|
||||||
return m.Server.URL + "/"
|
return m.Server.URL + "/"
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setup creates the mock server
|
// Setup creates the mock server.
|
||||||
func (m *SDMock) Setup() {
|
func (m *SDMock) Setup() {
|
||||||
m.Mux = http.NewServeMux()
|
m.Mux = http.NewServeMux()
|
||||||
m.Server = httptest.NewServer(m.Mux)
|
m.Server = httptest.NewServer(m.Mux)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ShutdownServer creates the mock server
|
// ShutdownServer shuts down the mock server.
|
||||||
func (m *SDMock) ShutdownServer() {
|
func (m *SDMock) ShutdownServer() {
|
||||||
m.Server.Close()
|
m.Server.Close()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user