-
-
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.
- Loading branch information
Showing
10 changed files
with
316 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"strings" | ||
"testing" | ||
"time" | ||
|
||
"github.com/prometheus/common/model" | ||
"github.com/prometheus/prometheus/prompb" | ||
"github.com/samber/lo" | ||
log "github.com/sirupsen/logrus" | ||
"github.com/sirupsen/logrus/hooks/test" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
const metricName = "kube_node_stuff" | ||
|
||
// These tests are actually super-hacky and brittle, but I'm not too sure how to do these tests a different way. It | ||
// would be nice to not just be comparing log outputs to see which code paths were taken, for one thing... | ||
// | ||
// Also, these tests are sortof inherently race-y, as evidenced by this delightful constant: | ||
const sleepTime = 100 * time.Millisecond | ||
|
||
func TestServerRun(t *testing.T) { | ||
cases := map[string]struct { | ||
operations func(*promserver) | ||
expectedLogEntries []string | ||
forbiddenLogEntries []string | ||
}{ | ||
"kill": { | ||
operations: func(s *promserver) { close(s.killChannel) }, | ||
expectedLogEntries: []string{ | ||
"server failed", | ||
"flushing all data files", | ||
"shutting down", | ||
}, | ||
forbiddenLogEntries: []string{ | ||
"SIGUSR1 received", | ||
"recovered from panic", | ||
}, | ||
}, | ||
"flush": { | ||
operations: func(s *promserver) { close(s.flushChannel) }, | ||
expectedLogEntries: []string{ | ||
"server failed", | ||
"flushing all data files", | ||
"SIGUSR1 received", | ||
}, | ||
forbiddenLogEntries: []string{ | ||
"shutting down", | ||
"recovered from panic", | ||
}, | ||
}, | ||
"flush then kill": { | ||
operations: func(s *promserver) { close(s.flushChannel); time.Sleep(sleepTime); close(s.killChannel) }, | ||
expectedLogEntries: []string{ | ||
"server failed", | ||
"flushing all data files", | ||
"SIGUSR1 received", | ||
"shutting down", | ||
"recovered from panic", | ||
}, | ||
forbiddenLogEntries: []string{}, | ||
}, | ||
} | ||
|
||
for name, tc := range cases { | ||
t.Run(name, func(t *testing.T) { | ||
logs := test.NewGlobal() | ||
srv := newServer(&options{}) | ||
srv.channels["foo"] = make(chan prompb.TimeSeries) | ||
go srv.run() | ||
|
||
tc.operations(srv) | ||
time.Sleep(sleepTime) | ||
|
||
entries := logs.AllEntries() | ||
|
||
for _, expected := range tc.expectedLogEntries { | ||
assert.GreaterOrEqual(t, len(lo.Filter(entries, func(e *log.Entry, _ int) bool { | ||
return strings.Contains(e.Message, expected) | ||
})), 1) | ||
} | ||
|
||
for _, forbidden := range tc.forbiddenLogEntries { | ||
assert.Len(t, lo.Filter(entries, func(e *log.Entry, _ int) bool { | ||
return strings.Contains(e.Message, forbidden) | ||
}), 0) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func TestSendTimeseries(t *testing.T) { | ||
srv := newServer(&options{}) | ||
srv.channels[metricName] = make(chan prompb.TimeSeries, 1) | ||
|
||
ts := prompb.TimeSeries{ | ||
Labels: []prompb.Label{ | ||
{ | ||
Name: model.MetricNameLabel, | ||
Value: metricName, | ||
}, | ||
{ | ||
Name: "foo", | ||
Value: "bar", | ||
}, | ||
{ | ||
Name: "baz", | ||
Value: "buz", | ||
}, | ||
}, | ||
Samples: []prompb.Sample{ | ||
{ | ||
Value: 1.0, | ||
Timestamp: 0, | ||
}, | ||
{ | ||
Value: 2.0, | ||
Timestamp: 1, | ||
}, | ||
}, | ||
} | ||
|
||
err := srv.sendTimeseries(context.TODO(), []prompb.TimeSeries{ts}) | ||
val := <-srv.channels[metricName] | ||
assert.Nil(t, err) | ||
assert.Equal(t, ts, val) | ||
} |
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
Oops, something went wrong.