forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow
hosts
to be used to configure http monitors (elastic#13703)
Currently only the http monitor allows configuring endpoints to hit via urls. Everyone else relies on hosts similar to metricbeat. This PR ensures that we also allow configuration with hosts. Eventually, the urls field can be deprecated. (cherry picked from commit 717771f)
- Loading branch information
Showing
9 changed files
with
232 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you under | ||
// the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package http | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
var tests = []struct { | ||
description string | ||
host string | ||
url string | ||
convertedHost string | ||
result bool | ||
}{ | ||
{ | ||
"Validate if neither urls nor host specified returns error", | ||
"", | ||
"", | ||
"", | ||
false, | ||
}, | ||
{ | ||
"Validate if only urls are present then the config is moved to hosts", | ||
"", | ||
"http://localhost:8080", | ||
"http://localhost:8080", | ||
true, | ||
}, | ||
{ | ||
"Validate if only hosts are present then the config is valid", | ||
"http://localhost:8080", | ||
"", | ||
"http://localhost:8080", | ||
true, | ||
}, | ||
{ | ||
"Validate if no scheme is present then it is added correctly", | ||
"localhost", | ||
"", | ||
"http://localhost", | ||
true, | ||
}, | ||
{ | ||
"Validate if no scheme is present but has a port then it is added correctly", | ||
"localhost:8080", | ||
"", | ||
"http://localhost:8080", | ||
true, | ||
}, | ||
{ | ||
"Validate if schemes like unix are honored", | ||
"unix://localhost:8080", | ||
"", | ||
"unix://localhost:8080", | ||
true, | ||
}, | ||
} | ||
|
||
func TestConfigValidate(t *testing.T) { | ||
for _, test := range tests { | ||
t.Run(test.description, func(t *testing.T) { | ||
config := Config{} | ||
if test.host != "" { | ||
config.Hosts = []string{test.host} | ||
} | ||
|
||
if test.url != "" { | ||
config.URLs = []string{test.url} | ||
} | ||
|
||
err := config.Validate() | ||
if test.result { | ||
assert.Nil(t, err) | ||
assert.Equal(t, test.convertedHost, config.Hosts[0]) | ||
} else { | ||
assert.NotNil(t, err) | ||
} | ||
|
||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.