mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
593da3603e
lib/bytesutil is more appropriate place for InternString() function
45 lines
884 B
Go
45 lines
884 B
Go
package bytesutil
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestInternStringSerial(t *testing.T) {
|
|
if err := testInternString(t); err != nil {
|
|
t.Fatalf("unexpected error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestInternStringConcurrent(t *testing.T) {
|
|
concurrency := 5
|
|
resultCh := make(chan error, concurrency)
|
|
for i := 0; i < concurrency; i++ {
|
|
go func() {
|
|
resultCh <- testInternString(t)
|
|
}()
|
|
}
|
|
timer := time.NewTimer(5 * time.Second)
|
|
for i := 0; i < concurrency; i++ {
|
|
select {
|
|
case err := <-resultCh:
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %s", err)
|
|
}
|
|
case <-timer.C:
|
|
t.Fatalf("timeout")
|
|
}
|
|
}
|
|
}
|
|
|
|
func testInternString(t *testing.T) error {
|
|
for i := 0; i < 1000; i++ {
|
|
s := fmt.Sprintf("foo_%d", i)
|
|
s1 := InternString(s)
|
|
if s != s1 {
|
|
return fmt.Errorf("unexpected string returned from internString; got %q; want %q", s1, s)
|
|
}
|
|
}
|
|
return nil
|
|
}
|