cgroup_exporter/cgroup_exporter_test.go

103 lines
2.6 KiB
Go
Raw Permalink Normal View History

// Copyright 2020 Trey Dockendorf
// 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.
2020-02-12 16:07:45 +00:00
package main
import (
2020-02-23 19:05:43 +00:00
"fmt"
2021-04-23 13:52:06 +00:00
"io"
2020-02-23 19:05:43 +00:00
"net/http"
"os"
2020-02-12 16:07:45 +00:00
"path/filepath"
"runtime"
2020-02-23 19:05:43 +00:00
"strings"
2020-02-12 16:07:45 +00:00
"testing"
2020-02-23 19:05:43 +00:00
"time"
2020-10-02 19:21:18 +00:00
kingpin "github.com/alecthomas/kingpin/v2"
"github.com/go-kit/log"
2024-01-24 17:54:50 +00:00
"github.com/treydock/cgroup_exporter/collector"
2020-02-12 16:07:45 +00:00
)
2020-02-23 19:05:43 +00:00
const (
2020-02-23 19:36:36 +00:00
address = "localhost:19306"
2020-02-23 19:05:43 +00:00
)
func TestMain(m *testing.M) {
if _, err := kingpin.CommandLine.Parse([]string{"--config.paths=/user.slice"}); err != nil {
2020-10-02 19:21:18 +00:00
os.Exit(1)
2020-02-23 19:05:43 +00:00
}
_, filename, _, _ := runtime.Caller(0)
dir := filepath.Dir(filename)
fixture := filepath.Join(dir, "fixtures")
2024-01-24 17:54:50 +00:00
collector.CgroupRoot = &fixture
2020-10-02 17:53:15 +00:00
procFixture := filepath.Join(fixture, "proc")
2024-01-24 17:54:50 +00:00
collector.ProcRoot = &procFixture
2020-02-23 19:05:43 +00:00
varTrue := true
disableExporterMetrics = &varTrue
2020-10-02 19:21:18 +00:00
w := log.NewSyncWriter(os.Stderr)
logger := log.NewLogfmtLogger(w)
2020-02-23 19:05:43 +00:00
go func() {
2020-10-02 19:21:18 +00:00
http.Handle("/metrics", metricsHandler(logger))
err := http.ListenAndServe(address, nil)
if err != nil {
os.Exit(1)
}
2020-02-23 19:05:43 +00:00
}()
time.Sleep(1 * time.Second)
exitVal := m.Run()
os.Exit(exitVal)
}
func TestMetricsHandler(t *testing.T) {
body, err := queryExporter()
if err != nil {
t.Fatalf("Unexpected error GET /metrics: %s", err.Error())
}
if !strings.Contains(body, "cgroup_memory_used_bytes{cgroup=\"/user.slice/user-20821.slice\"} 8.081408e+06") {
t.Errorf("Unexpected value for cgroup_memory_used_bytes")
}
}
func TestMetricsHandlerBadPath(t *testing.T) {
cPath := "/dne"
configPaths = &cPath
body, err := queryExporter()
if err != nil {
t.Fatalf("Unexpected error GET /metrics: %s", err.Error())
}
if !strings.Contains(body, "cgroup_exporter_collect_error{cgroup=\"/dne\"} 1") {
t.Errorf("Unexpected value for cgroup_memory_used_bytes")
}
}
func queryExporter() (string, error) {
resp, err := http.Get(fmt.Sprintf("http://%s/metrics", address))
if err != nil {
return "", err
}
2021-04-23 13:52:06 +00:00
b, err := io.ReadAll(resp.Body)
2020-02-23 19:05:43 +00:00
if err != nil {
return "", err
}
if err := resp.Body.Close(); err != nil {
return "", err
}
if want, have := http.StatusOK, resp.StatusCode; want != have {
return "", fmt.Errorf("want /metrics status code %d, have %d. Body:\n%s", want, have, b)
}
return string(b), nil
}