1
0
Fork 0

Adding upstream version 2.5.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-19 00:20:02 +02:00
parent c71cb8b61d
commit 982828099e
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
783 changed files with 150650 additions and 0 deletions

70
search/pool_test.go Normal file
View file

@ -0,0 +1,70 @@
// Copyright (c) 2013 Couchbase, Inc.
//
// 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 search
import "testing"
func TestDocumentMatchPool(t *testing.T) {
tooManyCalled := false
// create a pool
dmp := NewDocumentMatchPool(10, 0)
dmp.TooSmall = func(inner *DocumentMatchPool) *DocumentMatch {
tooManyCalled = true
return &DocumentMatch{}
}
// get 10 instances without returning
returned := make(DocumentMatchCollection, 10)
for i := 0; i < 10; i++ {
returned[i] = dmp.Get()
if tooManyCalled {
t.Fatal("too many function called before expected")
}
}
// get one more and see if too many function is called
extra := dmp.Get()
if !tooManyCalled {
t.Fatal("expected too many function to be called, but wasn't")
}
// return the first 10
for i := 0; i < 10; i++ {
dmp.Put(returned[i])
}
// check len and cap
if len(dmp.avail) != 10 {
t.Fatalf("expected 10 available, got %d", len(dmp.avail))
}
if cap(dmp.avail) != 10 {
t.Fatalf("expected avail cap still 10, got %d", cap(dmp.avail))
}
// return the extra
dmp.Put(extra)
// check len and cap grown to 11
if len(dmp.avail) != 11 {
t.Fatalf("expected 11 available, got %d", len(dmp.avail))
}
// cap grows, but not by 1 (append behavior)
if cap(dmp.avail) <= 10 {
t.Fatalf("expected avail cap mpore than 10, got %d", cap(dmp.avail))
}
}