-
Notifications
You must be signed in to change notification settings - Fork 1
/
example_test.go
73 lines (61 loc) · 1.75 KB
/
example_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
package worker_test
import (
"fmt"
"strings"
"testing"
"time"
"github.com/ankorstore/yokai-worker-template/internal"
"github.com/ankorstore/yokai/fxconfig"
"github.com/ankorstore/yokai/log/logtest"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/testutil"
"github.com/stretchr/testify/assert"
"go.uber.org/fx"
)
func TestExampleWorker(t *testing.T) {
var logBuffer logtest.TestLogBuffer
var metricsRegistry *prometheus.Registry
// bootstrap test app
app := internal.Bootstrapper.BootstrapTestApp(
t,
fxconfig.AsConfigPath(fmt.Sprintf("%s/configs/", internal.RootDir)),
fx.Populate(&logBuffer, &metricsRegistry),
)
// start test app
app.RequireStart()
// give time to worker to start
time.Sleep(1 * time.Millisecond)
// run log assertion
logtest.AssertHasLogRecord(t, logBuffer, map[string]interface{}{
"level": "info",
"service": "worker-app",
"module": "worker",
"worker": "example-worker",
"message": "running",
})
// stop test app
app.RequireStop()
// give time to worker to stop
time.Sleep(1 * time.Millisecond)
// stop log assertion
logtest.AssertHasLogRecord(t, logBuffer, map[string]interface{}{
"level": "info",
"service": "worker-app",
"module": "worker",
"worker": "example-worker",
"message": "stopping",
})
// metrics assertion
expectedMetric := `
# HELP worker_executions_total Total number of workers executions
# TYPE worker_executions_total counter
worker_executions_total{status="started",worker="example_worker"} 1
worker_executions_total{status="success",worker="example_worker"} 1
`
err := testutil.GatherAndCompare(
metricsRegistry,
strings.NewReader(expectedMetric),
"worker_executions_total",
)
assert.NoError(t, err)
}