-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache_bench_test.go
More file actions
286 lines (234 loc) · 7.02 KB
/
cache_bench_test.go
File metadata and controls
286 lines (234 loc) · 7.02 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
package goverhaul
import (
"fmt"
"testing"
"github.com/spf13/afero"
)
// generateViolations creates test violations for benchmarking
func generateViolations(count int) []LintViolation {
violations := make([]LintViolation, count)
for i := range violations {
violations[i] = LintViolation{
File: fmt.Sprintf("internal/pkg/module%d/file%d.go", i/100, i),
Import: fmt.Sprintf("internal/prohibited/package%d", i),
Rule: fmt.Sprintf("layer-rule-%d", i%10),
Cause: fmt.Sprintf("Package violates architectural boundary rule %d", i%10),
Details: fmt.Sprintf("Additional context: this import creates a dependency cycle in module %d", i/100),
Cached: false,
}
}
return violations
}
// wrapViolations wraps violations in LintViolations struct
func wrapViolations(violations []LintViolation) LintViolations {
return LintViolations{
Violations: violations,
}
}
// BenchmarkEncoding_Encode benchmarks encoding performance
func BenchmarkEncoding_Encode(b *testing.B) {
sizes := []int{10, 100, 1000, 10000, 100000}
for _, size := range sizes {
violations := wrapViolations(generateViolations(size))
b.Run(fmt.Sprintf("%d_violations", size), func(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
var result []byte
var err error
for b.Loop() {
result, err = marshalLintViolations(violations)
if err != nil {
b.Fatalf("Failed to encode: %v", err)
}
}
// Report metrics
b.SetBytes(int64(len(result)))
b.ReportMetric(float64(len(result)), "bytes/op")
})
}
}
// BenchmarkEncoding_Decode benchmarks decoding performance
func BenchmarkEncoding_Decode(b *testing.B) {
sizes := []int{10, 100, 1000, 10000, 100000}
for _, size := range sizes {
violations := wrapViolations(generateViolations(size))
encoded, err := marshalLintViolations(violations)
if err != nil {
b.Fatalf("Failed to encode: %v", err)
}
b.Run(fmt.Sprintf("%d_violations", size), func(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for b.Loop() {
_, err := unmarshalLintViolations(encoded)
if err != nil {
b.Fatalf("Failed to decode: %v", err)
}
}
b.SetBytes(int64(len(encoded)))
})
}
}
// BenchmarkEncoding_RoundTrip benchmarks complete encode/decode cycle
func BenchmarkEncoding_RoundTrip(b *testing.B) {
sizes := []int{10, 100, 1000, 10000, 100000}
for _, size := range sizes {
violations := wrapViolations(generateViolations(size))
b.Run(fmt.Sprintf("%d_violations", size), func(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for b.Loop() {
encoded, err := marshalLintViolations(violations)
if err != nil {
b.Fatalf("Failed to encode: %v", err)
}
_, err = unmarshalLintViolations(encoded)
if err != nil {
b.Fatalf("Failed to decode: %v", err)
}
}
b.SetBytes(int64(size))
})
}
}
// BenchmarkSerializedSize reports serialized sizes at different scales
func BenchmarkSerializedSize(b *testing.B) {
sizes := []int{10, 100, 1000, 10000, 100000}
for _, size := range sizes {
violations := wrapViolations(generateViolations(size))
b.Run(fmt.Sprintf("%d_violations", size), func(b *testing.B) {
encoded, err := marshalLintViolations(violations)
if err != nil {
b.Fatalf("Failed to encode: %v", err)
}
b.ReportMetric(float64(len(encoded)), "bytes")
b.ReportMetric(float64(len(encoded))/float64(size), "bytes/violation")
})
}
}
// BenchmarkCacheWrite benchmarks cache write operations
func BenchmarkCacheWrite(b *testing.B) {
sizes := []int{10, 100, 1000}
for _, size := range sizes {
violations := generateViolations(size)
b.Run(fmt.Sprintf("%d_violations", size), func(b *testing.B) {
b.ReportAllocs()
for b.Loop() {
b.StopTimer()
fs := afero.NewMemMapFs()
cache, err := NewCache(b.TempDir(), fs)
if err != nil {
b.Fatalf("Failed to create cache: %v", err)
}
testPath := "test_file.go"
// Create the test file in the filesystem
_ = afero.WriteFile(fs, testPath, []byte("package test"), 0644)
b.StartTimer()
err = cache.AddFileWithViolations(testPath, violations)
if err != nil {
b.Fatalf("Failed to add violations: %v", err)
}
}
b.SetBytes(int64(size))
})
}
}
// BenchmarkCacheRead benchmarks cache read operations
func BenchmarkCacheRead(b *testing.B) {
sizes := []int{10, 100, 1000}
for _, size := range sizes {
violations := generateViolations(size)
b.Run(fmt.Sprintf("%d_violations", size), func(b *testing.B) {
// Setup: create cache and populate it
fs := afero.NewMemMapFs()
cache, err := NewCache(b.TempDir(), fs)
if err != nil {
b.Fatalf("Failed to create cache: %v", err)
}
testPath := "test_file.go"
// Create the test file in the filesystem
_ = afero.WriteFile(fs, testPath, []byte("package test"), 0644)
err = cache.AddFileWithViolations(testPath, violations)
if err != nil {
b.Fatalf("Failed to add violations: %v", err)
}
b.ReportAllocs()
b.ResetTimer()
for b.Loop() {
_, err := cache.HasEntry(testPath)
if err != nil {
b.Fatalf("Failed to read violations: %v", err)
}
}
b.SetBytes(int64(size))
})
}
}
// BenchmarkCacheRoundTrip benchmarks complete cache write+read cycle
func BenchmarkCacheRoundTrip(b *testing.B) {
sizes := []int{10, 100, 1000}
for _, size := range sizes {
violations := generateViolations(size)
b.Run(fmt.Sprintf("%d_violations", size), func(b *testing.B) {
b.ReportAllocs()
for b.Loop() {
b.StopTimer()
fs := afero.NewMemMapFs()
cache, err := NewCache(b.TempDir(), fs)
if err != nil {
b.Fatalf("Failed to create cache: %v", err)
}
testPath := "test_file.go"
// Create the test file in the filesystem
_ = afero.WriteFile(fs, testPath, []byte("package test"), 0644)
b.StartTimer()
// Write
err = cache.AddFileWithViolations(testPath, violations)
if err != nil {
b.Fatalf("Failed to add violations: %v", err)
}
// Read
_, err = cache.HasEntry(testPath)
if err != nil {
b.Fatalf("Failed to read violations: %v", err)
}
}
b.SetBytes(int64(size))
})
}
}
// BenchmarkMemoryFootprint measures memory allocations for encoding
func BenchmarkMemoryFootprint(b *testing.B) {
sizes := []int{10, 100, 1000, 10000}
for _, size := range sizes {
violations := wrapViolations(generateViolations(size))
b.Run(fmt.Sprintf("%d_violations", size), func(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for b.Loop() {
_, err := marshalLintViolations(violations)
if err != nil {
b.Fatalf("Failed to encode: %v", err)
}
}
})
}
}
// BenchmarkScalability tests performance scaling with very large datasets
func BenchmarkScalability(b *testing.B) {
sizes := []int{1000, 10000, 100000}
for _, size := range sizes {
violations := wrapViolations(generateViolations(size))
b.Run(fmt.Sprintf("Encode_%d_violations", size), func(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for b.Loop() {
_, err := marshalLintViolations(violations)
if err != nil {
b.Fatalf("Failed to encode: %v", err)
}
}
b.SetBytes(int64(size))
})
}
}