-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocument_test.go
85 lines (72 loc) · 1.87 KB
/
document_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package main
import (
"context"
"errors"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/hansmi/paperhooks/pkg/client"
"github.com/hansmi/prometheus-paperless-exporter/internal/testutil"
)
type fakeDocumentClient struct {
count int64
err error
}
func (c *fakeDocumentClient) ListDocuments(ctx context.Context, opts client.ListDocumentsOptions) ([]client.Document, *client.Response, error) {
return nil, &client.Response{
ItemCount: c.count,
}, c.err
}
func TestDocument(t *testing.T) {
errTest := errors.New("test error")
for _, tc := range []struct {
name string
cl fakeDocumentClient
wantErr error
}{
{
name: "empty",
},
{
name: "listing fails",
cl: fakeDocumentClient{
err: errTest,
},
wantErr: errTest,
},
{
name: "documents",
cl: fakeDocumentClient{
count: 987,
},
},
} {
t.Run(tc.name, func(t *testing.T) {
c := newDocumentCollector(&tc.cl)
err := c.collect(context.Background(), testutil.DiscardMetrics(t))
if diff := cmp.Diff(tc.wantErr, err, cmpopts.EquateErrors()); diff != "" {
t.Errorf("Error diff (-want +got):\n%s", diff)
}
})
}
}
func TestDocumentCollect(t *testing.T) {
cl := fakeDocumentClient{
count: client.ItemCountUnknown,
}
c := newMultiCollectorForTest(t, newDocumentCollector(&cl))
testutil.CollectAndCompare(t, c, `
# HELP paperless_warnings_total Number of warnings generated while scraping metrics.
# TYPE paperless_warnings_total gauge
paperless_warnings_total{category="unspecified"} 0
`)
cl.count = 11921
testutil.CollectAndCompare(t, c, `
# HELP paperless_documents Number of documents.
# TYPE paperless_documents gauge
paperless_documents 11921
# HELP paperless_warnings_total Number of warnings generated while scraping metrics.
# TYPE paperless_warnings_total gauge
paperless_warnings_total{category="unspecified"} 0
`)
}