-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathapi_test.go
More file actions
493 lines (455 loc) · 13.2 KB
/
api_test.go
File metadata and controls
493 lines (455 loc) · 13.2 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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
// Copyright 2021 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package zoekt // import "github.com/sourcegraph/zoekt"
import (
"bytes"
"encoding/gob"
"encoding/json"
"reflect"
"strings"
"testing"
"time"
"github.com/grafana/regexp"
)
/*
BenchmarkMinimalRepoListEncodings/slice-8 570 2145665 ns/op 753790 bytes 3981 B/op 0 allocs/op
BenchmarkMinimalRepoListEncodings/map-8 360 3337522 ns/op 740778 bytes 377777 B/op 13002 allocs/op
*/
func BenchmarkMinimalRepoListEncodings(b *testing.B) {
size := uint32(13000) // 2021-06-24 rough estimate of number of repos on a replica.
type Slice struct {
ID uint32
HasSymbols bool
Branches []RepositoryBranch
IndexTimeUnix int64
}
branches := []RepositoryBranch{{Name: "HEAD", Version: strings.Repeat("a", 40)}}
mapData := make(map[uint32]*MinimalRepoListEntry, size)
sliceData := make([]Slice, 0, size)
indexTime := time.Now().Unix()
for id := uint32(1); id <= size; id++ {
mapData[id] = &MinimalRepoListEntry{
HasSymbols: true,
Branches: branches,
IndexTimeUnix: indexTime,
}
sliceData = append(sliceData, Slice{
ID: id,
HasSymbols: true,
Branches: branches,
IndexTimeUnix: indexTime,
})
}
b.Run("slice", benchmarkEncoding(sliceData))
b.Run("map", benchmarkEncoding(mapData))
}
func benchmarkEncoding(data any) func(*testing.B) {
return func(b *testing.B) {
b.Helper()
var buf bytes.Buffer
enc := gob.NewEncoder(&buf)
err := enc.Encode(data)
if err != nil {
b.Fatal(err)
}
b.ReportAllocs()
b.ResetTimer()
b.ReportMetric(float64(buf.Len()), "bytes")
for i := 0; i < b.N; i++ {
_ = enc.Encode(data)
buf.Reset()
}
}
}
func TestSizeBytesSearchResult(t *testing.T) {
sr := SearchResult{
Stats: Stats{}, // 129 bytes
Progress: Progress{}, // 16 bytes
Files: []FileMatch{{ // 24 bytes + 460 bytes
Score: 0, // 8 bytes
Debug: "", // 16 bytes
FileName: "", // 16 bytes
Repository: "", // 16 bytes
Branches: nil, // 24 bytes
LineMatches: nil, // 24 bytes
ChunkMatches: []ChunkMatch{{ // 24 bytes + 208 bytes (see TestSizeByteChunkMatches)
Content: []byte("foo"),
ContentStart: Location{},
FileName: false,
Ranges: []Range{{}},
SymbolInfo: []*Symbol{{}},
Score: 0,
DebugScore: "",
}},
RepositoryID: 0, // 4 bytes
RepositoryPriority: 0, // 8 bytes
Content: nil, // 24 bytes
Checksum: nil, // 24 bytes
Language: "", // 16 bytes
SubRepositoryName: "", // 16 bytes
SubRepositoryPath: "", // 16 bytes
Version: "", // 16 bytes
}},
RepoURLs: nil, // 48 bytes
LineFragments: nil, // 48 bytes
}
var wantBytes uint64 = 725
if sr.SizeBytes() != wantBytes {
t.Fatalf("want %d, got %d", wantBytes, sr.SizeBytes())
}
}
func TestSizeBytesChunkMatches(t *testing.T) {
cm := ChunkMatch{
Content: []byte("foo"), // 24 + 3 bytes
ContentStart: Location{}, // 12 bytes
FileName: false, // 1 byte
Ranges: []Range{{}}, // 24 bytes (slice header) + 24 bytes (content)
SymbolInfo: []*Symbol{{}}, // 24 bytes (slice header) + 4 * 16 bytes (string header) + 8 bytes (pointer)
Score: 0, // 8 byte
DebugScore: "", // 16 bytes (string header)
}
var wantBytes uint64 = 208
if cm.sizeBytes() != wantBytes {
t.Fatalf("want %d, got %d", wantBytes, cm.sizeBytes())
}
}
func TestMatchSize(t *testing.T) {
cases := []struct {
v any
size int
}{{
v: FileMatch{},
size: 256,
}, {
v: ChunkMatch{},
size: 120,
}}
for _, c := range cases {
got := reflect.TypeOf(c.v).Size()
if int(got) != c.size {
t.Errorf(`sizeof struct %T has changed from %d to %d.
These are match structs that occur a lot in memory, so we optimize size.
When changing, please ensure there isn't unnecessary padding via the
tool fieldalignment then update this test.`, c.v, c.size, got)
}
}
}
func TestSearchOptions_String(t *testing.T) {
// To make sure we don't forget to update the string implementation we use
// reflection to generate a SearchOptions with every field being non
// default. We then check that the field name is present in the output.
opts := SearchOptions{}
var fieldNames []string
rv := reflect.ValueOf(&opts).Elem()
for i := range rv.NumField() {
f := rv.Field(i)
name := rv.Type().Field(i).Name
fieldNames = append(fieldNames, name)
switch f.Kind() {
case reflect.Bool:
f.SetBool(true)
case reflect.Int:
f.SetInt(1)
case reflect.Int64:
f.SetInt(1)
case reflect.Float64:
f.SetFloat(1)
case reflect.Map:
// Only map is SpanContext
f.Set(reflect.ValueOf(map[string]string{"key": "value"}))
default:
t.Fatalf("add support for %s field (%s)", f.Kind(), name)
}
}
s := opts.String()
for _, name := range fieldNames {
found, err := regexp.MatchString("\\b"+regexp.QuoteMeta(name)+"\\b", s)
if err != nil {
t.Fatal(err)
}
if !found {
t.Errorf("could not find field %q in string output of SearchOptions:\n%s", name, s)
}
}
webDefaults := SearchOptions{
MaxWallTime: 10 * time.Second,
}
webDefaults.SetDefaults()
// Now we hand craft a few corner and common cases
cases := []struct {
Opts SearchOptions
Want string
}{{
// Empty
Opts: SearchOptions{},
Want: "zoekt.SearchOptions{ }",
}, {
// healthz options
Opts: SearchOptions{ShardMaxMatchCount: 1, TotalMaxMatchCount: 1, MaxDocDisplayCount: 1},
Want: "zoekt.SearchOptions{ ShardMaxMatchCount=1 TotalMaxMatchCount=1 MaxDocDisplayCount=1 }",
}, {
// zoekt-webserver defaults
Opts: webDefaults,
Want: "zoekt.SearchOptions{ ShardMaxMatchCount=100000 TotalMaxMatchCount=1000000 MaxWallTime=10s }",
}}
for _, tc := range cases {
got := tc.Opts.String()
if got != tc.Want {
t.Errorf("unexpected String for %#v:\ngot: %s\nwant: %s", tc.Opts, got, tc.Want)
}
}
}
func TestRepositoryMergeMutable(t *testing.T) {
a := Repository{
ID: 0,
Name: "name",
Branches: []RepositoryBranch{
{
Name: "branchName",
Version: "branchVersion",
},
},
RawConfig: nil,
URL: "url",
CommitURLTemplate: "commitUrlTemplate",
FileURLTemplate: "fileUrlTemplate",
LineFragmentTemplate: "lineFragmentTemplate",
}
t.Run("different ID", func(t *testing.T) {
b := a
b.ID = 1
mutated, err := a.MergeMutable(&b)
if err == nil {
t.Fatalf("want err, got mutated=%t", mutated)
}
})
t.Run("different Name", func(t *testing.T) {
b := a
b.Name = "otherName"
mutated, err := a.MergeMutable(&b)
if err == nil {
t.Fatalf("want err, got mutated=%t", mutated)
}
})
t.Run("different Branches", func(t *testing.T) {
b := a
b.Branches = []RepositoryBranch{
{
Name: "otherBranchName",
Version: "branchVersion",
},
}
mutated, err := a.MergeMutable(&b)
if err == nil {
t.Fatalf("want err, got mutated=%t", mutated)
}
})
t.Run("different RawConfig", func(t *testing.T) {
b := a
b.RawConfig = map[string]string{"foo": "bar"}
mutated, err := a.MergeMutable(&b)
if err != nil {
t.Fatalf("got err %v", err)
}
if !mutated {
t.Fatalf("want mutated=true, got false")
}
if !reflect.DeepEqual(a.RawConfig, b.RawConfig) {
t.Fatalf("got different RawConfig, %v vs %v", a.RawConfig, b.RawConfig)
}
})
t.Run("different URL", func(t *testing.T) {
b := a
b.URL = "otherURL"
mutated, err := a.MergeMutable(&b)
if err != nil {
t.Fatalf("got err %v", err)
}
if !mutated {
t.Fatalf("want mutated=true, got false")
}
if a.URL != b.URL {
t.Fatalf("got different URL, %s vs %s", a.URL, b.URL)
}
})
t.Run("different CommitURLTemplate", func(t *testing.T) {
b := a
b.CommitURLTemplate = "otherCommitUrlTemplate"
mutated, err := a.MergeMutable(&b)
if err != nil {
t.Fatalf("got err %v", err)
}
if !mutated {
t.Fatalf("want mutated=true, got false")
}
if a.CommitURLTemplate != b.CommitURLTemplate {
t.Fatalf("got different CommitURLTemplate, %s vs %s", a.CommitURLTemplate, b.CommitURLTemplate)
}
})
t.Run("different FileURLTemplate", func(t *testing.T) {
b := a
b.FileURLTemplate = "otherFileUrlTemplate"
mutated, err := a.MergeMutable(&b)
if err != nil {
t.Fatalf("got err %v", err)
}
if !mutated {
t.Fatalf("want mutated=true, got false")
}
if a.FileURLTemplate != b.FileURLTemplate {
t.Fatalf("got different FileURLTemplate, %s vs %s", a.FileURLTemplate, b.FileURLTemplate)
}
})
t.Run("different LineFragmentTemplate", func(t *testing.T) {
b := a
b.LineFragmentTemplate = "otherLineFragmentTemplate"
mutated, err := a.MergeMutable(&b)
if err != nil {
t.Fatalf("got err %v", err)
}
if !mutated {
t.Fatalf("want mutated=true, got false")
}
if a.LineFragmentTemplate != b.LineFragmentTemplate {
t.Fatalf("got different LineFragmentTemplate, %s vs %s", a.LineFragmentTemplate, b.LineFragmentTemplate)
}
})
t.Run("all same", func(t *testing.T) {
b := a
mutated, err := a.MergeMutable(&b)
if err != nil {
t.Fatalf("got err %v", err)
}
if mutated {
t.Fatalf("want mutated=false, got true")
}
if !reflect.DeepEqual(a, b) {
t.Fatalf("got different Repository, %v vs %v", a, b)
}
})
}
func TestMonthsSince1970(t *testing.T) {
tests := []struct {
name string
input time.Time
expected uint16
}{
{"Before 1970", time.Date(1950, 12, 31, 0, 0, 0, 0, time.UTC), 0},
{"Unix 0", time.Date(1970, 1, 1, 0, 0, 0, 0, time.UTC), 0},
{"Feb 1970", time.Date(1970, 2, 1, 0, 0, 0, 0, time.UTC), 1},
{"Year 1989", time.Date(1989, 12, 13, 0, 0, 0, 0, time.UTC), 239},
{"Sep 2024", time.Date(2024, 9, 20, 0, 0, 0, 0, time.UTC), 656},
{"Oct 2024", time.Date(2024, 10, 20, 0, 0, 0, 0, time.UTC), 657},
{"Apr 7431", time.Date(7431, 4, 1, 0, 0, 0, 0, time.UTC), 65535},
{"9999", time.Date(9999, 0, 0, 0, 0, 0, 0, time.UTC), 65535},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := monthsSince1970(tt.input)
if result != tt.expected {
t.Errorf("expected %d, got %d", tt.expected, result)
}
})
}
}
// TestRepositoryUnmarshalJSONStackOverflowFix tests that the UnmarshalJSON method
// for Repository doesn't cause a stack overflow due to infinite recursion.
// This test creates a scenario that would trigger the bug where the type alias
// was incorrectly defined as a pointer type, causing recursive calls during
// JSON unmarshaling of nested SubRepoMap structures.
func TestRepositoryUnmarshalJSONStackOverflowFix(t *testing.T) {
// Create a JSON with nested SubRepoMap containing Repository objects
// This specifically tests the recursive scenario that causes stack overflow
jsonData := `{
"id": 12345,
"name": "test-repo",
"url": "https://example.com/test-repo",
"branches": [
{
"name": "main",
"version": "abc123"
}
],
"rawconfig": {
"repoid": "12345"
},
"subrepomap": {
"submodule1": {
"id": 11111,
"name": "submodule1",
"url": "https://example.com/submodule1",
"rawconfig": {
"repoid": "11111"
},
"subrepomap": {
"nested-submodule": {
"id": 33333,
"name": "nested-submodule",
"rawconfig": {
"repoid": "33333"
}
}
}
},
"submodule2": {
"id": 22222,
"name": "submodule2",
"rawconfig": {
"repoid": "22222"
}
}
}
}`
// Attempt to unmarshal the JSON data into a Repository struct
// This would previously cause a stack overflow due to incorrect type alias
var repo Repository
err := json.Unmarshal([]byte(jsonData), &repo)
// Verify that unmarshaling succeeds without stack overflow
if err != nil {
t.Fatalf("Failed to unmarshal Repository JSON: %v", err)
}
// Basic verification
if repo.ID != 12345 {
t.Errorf("Expected ID 12345, got %d", repo.ID)
}
if repo.Name != "test-repo" {
t.Errorf("Expected Name 'test-repo', got '%s'", repo.Name)
}
// Verify nested SubRepoMap handling doesn't cause stack overflow
if repo.SubRepoMap == nil {
t.Fatalf("Expected SubRepoMap to be non-nil")
}
if len(repo.SubRepoMap) != 2 {
t.Fatalf("Expected 2 subrepos in SubRepoMap, got %d", len(repo.SubRepoMap))
}
// Verify nested repository unmarshaling worked correctly
submodule1, exists := repo.SubRepoMap["submodule1"]
if !exists {
t.Fatalf("Expected submodule1 to exist in SubRepoMap")
}
if submodule1.ID != 11111 {
t.Errorf("Expected submodule1 ID 11111, got %d", submodule1.ID)
}
// Verify deeply nested SubRepoMap works
if submodule1.SubRepoMap == nil {
t.Fatalf("Expected submodule1 SubRepoMap to be non-nil")
}
nestedSubmodule, exists := submodule1.SubRepoMap["nested-submodule"]
if !exists {
t.Fatalf("Expected nested-submodule to exist")
}
if nestedSubmodule.ID != 33333 {
t.Errorf("Expected nested-submodule ID 33333, got %d", nestedSubmodule.ID)
}
}