2015-09-26 15:36:40 +00:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// 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.
|
|
|
|
|
2015-09-03 14:59:56 +00:00
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
2017-12-23 19:21:58 +00:00
|
|
|
"fmt"
|
2015-09-03 14:59:56 +00:00
|
|
|
"io/ioutil"
|
2017-12-23 19:21:58 +00:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
2015-09-03 14:59:56 +00:00
|
|
|
"testing"
|
|
|
|
|
2017-12-23 19:21:58 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
2017-08-12 13:07:24 +00:00
|
|
|
"github.com/prometheus/common/log"
|
2017-12-23 19:21:58 +00:00
|
|
|
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
2015-09-03 14:59:56 +00:00
|
|
|
)
|
|
|
|
|
2017-12-23 19:21:58 +00:00
|
|
|
type collectorAdapter struct {
|
|
|
|
Collector
|
|
|
|
}
|
|
|
|
|
|
|
|
// Describe implements the prometheus.Collector interface.
|
|
|
|
func (a collectorAdapter) Describe(ch chan<- *prometheus.Desc) {
|
|
|
|
// We have to send *some* metric in Describe, but we don't know which ones
|
|
|
|
// we're going to get, so just send a dummy metric.
|
|
|
|
ch <- prometheus.NewDesc("dummy_metric", "Dummy metric.", nil, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect implements the prometheus.Collector interface.
|
|
|
|
func (a collectorAdapter) Collect(ch chan<- prometheus.Metric) {
|
|
|
|
err := a.Update(ch)
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("failed to update collector: %v", err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTextfileCollector(t *testing.T) {
|
2015-09-03 14:59:56 +00:00
|
|
|
tests := []struct {
|
|
|
|
path string
|
|
|
|
out string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
path: "fixtures/textfile/no_metric_files",
|
|
|
|
out: "fixtures/textfile/no_metric_files.out",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "fixtures/textfile/two_metric_files",
|
|
|
|
out: "fixtures/textfile/two_metric_files.out",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "fixtures/textfile/nonexistent_path",
|
|
|
|
out: "fixtures/textfile/nonexistent_path.out",
|
|
|
|
},
|
2018-02-27 18:43:38 +00:00
|
|
|
{
|
|
|
|
path: "fixtures/textfile/client_side_timestamp",
|
|
|
|
out: "fixtures/textfile/client_side_timestamp.out",
|
|
|
|
},
|
2017-12-23 19:21:58 +00:00
|
|
|
{
|
|
|
|
path: "fixtures/textfile/different_metric_types",
|
|
|
|
out: "fixtures/textfile/different_metric_types.out",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "fixtures/textfile/inconsistent_metrics",
|
|
|
|
out: "fixtures/textfile/inconsistent_metrics.out",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "fixtures/textfile/histogram",
|
|
|
|
out: "fixtures/textfile/histogram.out",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "fixtures/textfile/histogram_extra_dimension",
|
|
|
|
out: "fixtures/textfile/histogram_extra_dimension.out",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "fixtures/textfile/summary",
|
|
|
|
out: "fixtures/textfile/summary.out",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "fixtures/textfile/summary_extra_dimension",
|
|
|
|
out: "fixtures/textfile/summary_extra_dimension.out",
|
|
|
|
},
|
2015-09-03 14:59:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, test := range tests {
|
2017-12-23 19:21:58 +00:00
|
|
|
mtime := 1.0
|
|
|
|
c := &textFileCollector{
|
|
|
|
path: test.path,
|
|
|
|
mtime: &mtime,
|
2015-09-03 14:59:56 +00:00
|
|
|
}
|
|
|
|
|
2015-09-26 18:15:42 +00:00
|
|
|
// Suppress a log message about `nonexistent_path` not existing, this is
|
|
|
|
// expected and clutters the test output.
|
2017-08-12 13:07:24 +00:00
|
|
|
log.AddFlags(kingpin.CommandLine)
|
|
|
|
_, err := kingpin.CommandLine.Parse([]string{"--log.level", "fatal"})
|
2015-09-26 18:15:42 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2017-12-23 19:21:58 +00:00
|
|
|
registry := prometheus.NewRegistry()
|
|
|
|
registry.MustRegister(collectorAdapter{c})
|
|
|
|
|
|
|
|
rw := httptest.NewRecorder()
|
|
|
|
promhttp.HandlerFor(registry, promhttp.HandlerOpts{}).ServeHTTP(rw, &http.Request{})
|
|
|
|
got := string(rw.Body.String())
|
2015-09-03 14:59:56 +00:00
|
|
|
|
|
|
|
want, err := ioutil.ReadFile(test.out)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("%d. error reading fixture file %s: %s", i, test.out, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if string(want) != got {
|
2017-12-23 19:21:58 +00:00
|
|
|
t.Fatalf("%d.%q want:\n\n%s\n\ngot:\n\n%s", i, test.path, string(want), got)
|
2015-09-03 14:59:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|