2013-01-04 03:17:31 -08:00
|
|
|
// Copyright 2013 Prometheus Team
|
|
|
|
// Licensed 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 retrieval
|
|
|
|
|
2013-01-12 12:58:52 -08:00
|
|
|
import (
|
2014-10-10 06:24:38 -07:00
|
|
|
"net/http"
|
2013-01-12 12:58:52 -08:00
|
|
|
"testing"
|
|
|
|
"time"
|
2014-10-10 06:24:38 -07:00
|
|
|
|
|
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
2013-01-12 12:58:52 -08:00
|
|
|
)
|
2013-01-04 03:17:31 -08:00
|
|
|
|
2014-05-21 10:27:24 -07:00
|
|
|
func testTargetPool(t testing.TB) {
|
2013-01-04 03:17:31 -08:00
|
|
|
type expectation struct {
|
|
|
|
size int
|
|
|
|
}
|
|
|
|
|
2013-01-12 12:58:52 -08:00
|
|
|
type input struct {
|
|
|
|
address string
|
|
|
|
scheduledFor time.Time
|
|
|
|
}
|
2013-01-04 03:17:31 -08:00
|
|
|
|
2013-01-12 12:58:52 -08:00
|
|
|
type output struct {
|
|
|
|
address string
|
|
|
|
}
|
2013-01-04 03:17:31 -08:00
|
|
|
|
2013-01-12 12:58:52 -08:00
|
|
|
var scenarios = []struct {
|
|
|
|
name string
|
|
|
|
inputs []input
|
2013-02-21 10:48:29 -08:00
|
|
|
outputs []output
|
2013-01-12 12:58:52 -08:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "empty",
|
|
|
|
inputs: []input{},
|
|
|
|
outputs: []output{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "single element",
|
|
|
|
inputs: []input{
|
|
|
|
{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "single1",
|
2013-01-12 12:58:52 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
outputs: []output{
|
|
|
|
{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "single1",
|
2013-01-12 12:58:52 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2014-07-29 09:28:48 -07:00
|
|
|
name: "plural schedules",
|
2013-01-12 12:58:52 -08:00
|
|
|
inputs: []input{
|
|
|
|
{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "plural1",
|
2013-01-12 12:58:52 -08:00
|
|
|
},
|
|
|
|
{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "plural2",
|
2013-01-12 12:58:52 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
outputs: []output{
|
|
|
|
{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "plural1",
|
2013-01-12 12:58:52 -08:00
|
|
|
},
|
|
|
|
{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "plural2",
|
2013-01-12 12:58:52 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2013-01-04 03:17:31 -08:00
|
|
|
|
2013-01-12 12:58:52 -08:00
|
|
|
for i, scenario := range scenarios {
|
2014-07-29 11:31:11 -07:00
|
|
|
pool := NewTargetPool(nil, nil, nopIngester{}, time.Duration(1))
|
2013-01-04 03:17:31 -08:00
|
|
|
|
|
|
|
for _, input := range scenario.inputs {
|
2013-01-13 01:46:55 -08:00
|
|
|
target := target{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: input.address,
|
|
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
|
|
httpClient: &http.Client{},
|
2013-01-04 03:17:31 -08:00
|
|
|
}
|
2013-02-22 12:07:35 -08:00
|
|
|
pool.addTarget(&target)
|
2013-01-12 12:58:52 -08:00
|
|
|
}
|
2013-01-13 01:46:55 -08:00
|
|
|
|
2014-07-29 11:31:11 -07:00
|
|
|
if len(pool.targetsByAddress) != len(scenario.outputs) {
|
|
|
|
t.Errorf("%s %d. expected TargetPool size to be %d but was %d", scenario.name, i, len(scenario.outputs), len(pool.targetsByAddress))
|
2013-01-12 12:58:52 -08:00
|
|
|
} else {
|
|
|
|
for j, output := range scenario.outputs {
|
2014-10-08 07:22:54 -07:00
|
|
|
if target, ok := pool.targetsByAddress[output.address]; !ok {
|
2013-01-13 01:46:55 -08:00
|
|
|
t.Errorf("%s %d.%d. expected Target address to be %s but was %s", scenario.name, i, j, output.address, target.Address())
|
2013-01-12 12:58:52 -08:00
|
|
|
}
|
2013-01-13 01:46:55 -08:00
|
|
|
}
|
|
|
|
|
2014-07-29 11:31:11 -07:00
|
|
|
if len(pool.targetsByAddress) != len(scenario.outputs) {
|
|
|
|
t.Errorf("%s %d. expected to repopulated with %d elements, got %d", scenario.name, i, len(scenario.outputs), len(pool.targetsByAddress))
|
2013-01-12 12:58:52 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-01-13 01:46:55 -08:00
|
|
|
|
|
|
|
func TestTargetPool(t *testing.T) {
|
|
|
|
testTargetPool(t)
|
|
|
|
}
|
|
|
|
|
2013-02-22 12:07:35 -08:00
|
|
|
func TestTargetPoolReplaceTargets(t *testing.T) {
|
2014-07-29 11:31:11 -07:00
|
|
|
pool := NewTargetPool(nil, nil, nopIngester{}, time.Duration(1))
|
2013-02-22 12:07:35 -08:00
|
|
|
oldTarget1 := &target{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "example1",
|
|
|
|
state: UNREACHABLE,
|
2014-11-20 12:03:51 -08:00
|
|
|
stopScraper: make(chan struct{}),
|
2014-10-10 06:24:38 -07:00
|
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
|
|
httpClient: &http.Client{},
|
2013-02-22 12:07:35 -08:00
|
|
|
}
|
|
|
|
oldTarget2 := &target{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "example2",
|
|
|
|
state: UNREACHABLE,
|
2014-11-20 12:03:51 -08:00
|
|
|
stopScraper: make(chan struct{}),
|
2014-10-10 06:24:38 -07:00
|
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
|
|
httpClient: &http.Client{},
|
2013-02-22 12:07:35 -08:00
|
|
|
}
|
|
|
|
newTarget1 := &target{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "example1",
|
|
|
|
state: ALIVE,
|
2014-11-20 12:03:51 -08:00
|
|
|
stopScraper: make(chan struct{}),
|
2014-10-10 06:24:38 -07:00
|
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
|
|
httpClient: &http.Client{},
|
2013-02-22 12:07:35 -08:00
|
|
|
}
|
|
|
|
newTarget2 := &target{
|
2014-10-10 06:24:38 -07:00
|
|
|
address: "example3",
|
|
|
|
state: ALIVE,
|
2014-11-20 12:03:51 -08:00
|
|
|
stopScraper: make(chan struct{}),
|
2014-10-10 06:24:38 -07:00
|
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
|
|
httpClient: &http.Client{},
|
2013-02-22 12:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
pool.addTarget(oldTarget1)
|
|
|
|
pool.addTarget(oldTarget2)
|
|
|
|
|
2014-07-29 11:31:11 -07:00
|
|
|
pool.ReplaceTargets([]Target{newTarget1, newTarget2})
|
2013-02-22 12:07:35 -08:00
|
|
|
|
2014-07-29 11:31:11 -07:00
|
|
|
if len(pool.targetsByAddress) != 2 {
|
|
|
|
t.Errorf("Expected 2 elements in pool, had %d", len(pool.targetsByAddress))
|
2013-02-22 12:07:35 -08:00
|
|
|
}
|
|
|
|
|
2014-07-29 11:31:11 -07:00
|
|
|
if pool.targetsByAddress["example1"].State() != oldTarget1.State() {
|
|
|
|
t.Errorf("target1 channel has changed")
|
2013-02-22 12:07:35 -08:00
|
|
|
}
|
2014-07-29 11:31:11 -07:00
|
|
|
if pool.targetsByAddress["example3"].State() == oldTarget2.State() {
|
|
|
|
t.Errorf("newTarget2 channel same as oldTarget2's")
|
2013-02-22 12:07:35 -08:00
|
|
|
}
|
2014-07-29 11:31:11 -07:00
|
|
|
|
2013-02-22 12:07:35 -08:00
|
|
|
}
|
|
|
|
|
2013-01-13 01:46:55 -08:00
|
|
|
func BenchmarkTargetPool(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testTargetPool(b)
|
|
|
|
}
|
|
|
|
}
|