-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
transaction_internal_test.go
135 lines (109 loc) · 2.96 KB
/
transaction_internal_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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package otelsql
import (
"context"
"errors"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
semconv "go.opentelemetry.io/otel/semconv/v1.20.0"
"go.nhat.io/otelsql/internal/test/oteltest"
)
func TestChainTxFuncMiddlewares_NoMiddleware(t *testing.T) {
t.Parallel()
f := chainMiddlewares(nil, nopTxFunc)
err := f()
assert.NoError(t, err)
}
func TestChainTxFuncMiddlewares(t *testing.T) {
t.Parallel()
stack := make([]string, 0)
pushTxFunc := func(s string) txFunc {
return func() error {
stack = append(stack, s)
return nil
}
}
pushTxFuncMiddleware := func(s string) txFuncMiddleware {
return func(next txFunc) txFunc {
return func() error {
stack = append(stack, s)
return next()
}
}
}
f := chainMiddlewares(
[]txFuncMiddleware{
pushTxFuncMiddleware("outer"),
pushTxFuncMiddleware("inner"),
},
pushTxFunc("end"),
)
err := f()
assert.NoError(t, err)
expected := []string{"outer", "inner", "end"}
assert.Equal(t, expected, stack)
}
func TestTxStats(t *testing.T) {
t.Parallel()
testCases := []struct {
scenario string
beginner txFunc
expected string
}{
{
scenario: "error",
beginner: func() error {
return errors.New("error")
},
expected: `[
{
"Name": "db.sql.client.calls{service.name=otelsql,instrumentation.name=tx_test,db.instance=test,db.operation=go.sql.commit,db.sql.error=error,db.sql.status=ERROR,db.system=other_sql}",
"Sum": 1
},
{
"Name": "db.sql.client.latency{service.name=otelsql,instrumentation.name=tx_test,db.instance=test,db.operation=go.sql.commit,db.sql.error=error,db.sql.status=ERROR,db.system=other_sql}",
"Sum": "<ignore-diff>",
"Count": 1
}
]`,
},
{
scenario: "no error",
beginner: nopTxFunc,
expected: `[
{
"Name": "db.sql.client.calls{service.name=otelsql,instrumentation.name=tx_test,db.instance=test,db.operation=go.sql.commit,db.sql.status=OK,db.system=other_sql}",
"Sum": 1
},
{
"Name": "db.sql.client.latency{service.name=otelsql,instrumentation.name=tx_test,db.instance=test,db.operation=go.sql.commit,db.sql.status=OK,db.system=other_sql}",
"Sum": "<ignore-diff>",
"Count": 1,
"Count": 1
}
]`,
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.scenario, func(t *testing.T) {
t.Parallel()
oteltest.New(oteltest.MetricsEqualJSON(tc.expected)).
Run(t, func(s oteltest.SuiteContext) {
meter := s.MeterProvider().Meter("tx_test")
histogram, err := meter.Float64Histogram(dbSQLClientLatencyMs)
require.NoError(t, err)
count, err := meter.Int64Counter(dbSQLClientCalls)
require.NoError(t, err)
r := newMethodRecorder(histogram.Record, count.Add,
semconv.DBSystemOtherSQL,
dbInstance.String("test"),
)
f := chainMiddlewares([]txFuncMiddleware{
txStats(context.Background(), r, metricMethodCommit),
}, tc.beginner)
_ = f() // nolint: errcheck
})
})
}
}