|
| 1 | +// Copyright 2023 The Prometheus Authors |
| 2 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | +// you may not use this file except in compliance with the License. |
| 4 | +// You may obtain a copy of the License at |
| 5 | +// |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +// |
| 8 | +// Unless required by applicable law or agreed to in writing, software |
| 9 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | +// See the License for the specific language governing permissions and |
| 12 | +// limitations under the License. |
| 13 | +package collector |
| 14 | + |
| 15 | +import ( |
| 16 | + "context" |
| 17 | + "testing" |
| 18 | + |
| 19 | + "github.com/DATA-DOG/go-sqlmock" |
| 20 | + "github.com/prometheus/client_golang/prometheus" |
| 21 | + dto "github.com/prometheus/client_model/go" |
| 22 | + "github.com/smartystreets/goconvey/convey" |
| 23 | +) |
| 24 | + |
| 25 | +func TestPgWALCollector(t *testing.T) { |
| 26 | + db, mock, err := sqlmock.New() |
| 27 | + if err != nil { |
| 28 | + t.Fatalf("Error opening a stub db connection: %s", err) |
| 29 | + } |
| 30 | + defer db.Close() |
| 31 | + |
| 32 | + inst := &instance{db: db} |
| 33 | + |
| 34 | + columns := []string{"segments", "size"} |
| 35 | + rows := sqlmock.NewRows(columns). |
| 36 | + AddRow(47, 788529152) |
| 37 | + mock.ExpectQuery(sanitizeQuery(pgWALQuery)).WillReturnRows(rows) |
| 38 | + |
| 39 | + ch := make(chan prometheus.Metric) |
| 40 | + go func() { |
| 41 | + defer close(ch) |
| 42 | + c := PGWALCollector{} |
| 43 | + |
| 44 | + if err := c.Update(context.Background(), inst, ch); err != nil { |
| 45 | + t.Errorf("Error calling PGWALCollector.Update: %s", err) |
| 46 | + } |
| 47 | + }() |
| 48 | + |
| 49 | + expected := []MetricResult{ |
| 50 | + {labels: labelMap{}, value: 47, metricType: dto.MetricType_GAUGE}, |
| 51 | + {labels: labelMap{}, value: 788529152, metricType: dto.MetricType_GAUGE}, |
| 52 | + } |
| 53 | + |
| 54 | + convey.Convey("Metrics comparison", t, func() { |
| 55 | + for _, expect := range expected { |
| 56 | + m := readMetric(<-ch) |
| 57 | + convey.So(expect, convey.ShouldResemble, m) |
| 58 | + } |
| 59 | + }) |
| 60 | + if err := mock.ExpectationsWereMet(); err != nil { |
| 61 | + t.Errorf("there were unfulfilled exceptions: %s", err) |
| 62 | + } |
| 63 | +} |
0 commit comments