2013-03-19 11:40:29 -06:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-08-05 13:35:41 -06:00
|
|
|
package runtime_test
|
|
|
|
|
|
|
|
import (
|
2014-06-17 01:36:23 -06:00
|
|
|
"runtime"
|
2014-07-08 12:37:18 -06:00
|
|
|
"strings"
|
2012-08-05 13:35:41 -06:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func BenchmarkCompareStringEqual(b *testing.B) {
|
|
|
|
bytes := []byte("Hello Gophers!")
|
|
|
|
s1, s2 := string(bytes), string(bytes)
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
if s1 != s2 {
|
|
|
|
b.Fatal("s1 != s2")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkCompareStringIdentical(b *testing.B) {
|
|
|
|
s1 := "Hello Gophers!"
|
|
|
|
s2 := s1
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
if s1 != s2 {
|
|
|
|
b.Fatal("s1 != s2")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkCompareStringSameLength(b *testing.B) {
|
|
|
|
s1 := "Hello Gophers!"
|
|
|
|
s2 := "Hello, Gophers"
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
if s1 == s2 {
|
|
|
|
b.Fatal("s1 == s2")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkCompareStringDifferentLength(b *testing.B) {
|
|
|
|
s1 := "Hello Gophers!"
|
|
|
|
s2 := "Hello, Gophers!"
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
if s1 == s2 {
|
|
|
|
b.Fatal("s1 == s2")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-02 17:26:15 -06:00
|
|
|
|
|
|
|
func BenchmarkCompareStringBigUnaligned(b *testing.B) {
|
|
|
|
bytes := make([]byte, 0, 1<<20)
|
|
|
|
for len(bytes) < 1<<20 {
|
|
|
|
bytes = append(bytes, "Hello Gophers!"...)
|
|
|
|
}
|
|
|
|
s1, s2 := string(bytes), "hello"+string(bytes)
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
if s1 != s2[len("hello"):] {
|
|
|
|
b.Fatal("s1 != s2")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
b.SetBytes(int64(len(s1)))
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkCompareStringBig(b *testing.B) {
|
|
|
|
bytes := make([]byte, 0, 1<<20)
|
|
|
|
for len(bytes) < 1<<20 {
|
|
|
|
bytes = append(bytes, "Hello Gophers!"...)
|
|
|
|
}
|
|
|
|
s1, s2 := string(bytes), string(bytes)
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
if s1 != s2 {
|
|
|
|
b.Fatal("s1 != s2")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
b.SetBytes(int64(len(s1)))
|
|
|
|
}
|
2014-06-17 00:03:03 -06:00
|
|
|
|
|
|
|
func BenchmarkRuneIterate(b *testing.B) {
|
|
|
|
bytes := make([]byte, 100)
|
|
|
|
for i := range bytes {
|
|
|
|
bytes[i] = byte('A')
|
|
|
|
}
|
|
|
|
s := string(bytes)
|
|
|
|
for i := 0; i < b.N; i++ {
|
2014-07-16 17:29:51 -06:00
|
|
|
for range s {
|
2014-06-17 00:03:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkRuneIterate2(b *testing.B) {
|
|
|
|
bytes := make([]byte, 100)
|
|
|
|
for i := range bytes {
|
|
|
|
bytes[i] = byte('A')
|
|
|
|
}
|
|
|
|
s := string(bytes)
|
|
|
|
for i := 0; i < b.N; i++ {
|
2014-07-16 17:29:51 -06:00
|
|
|
for range s {
|
2014-06-17 00:03:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-17 01:36:23 -06:00
|
|
|
|
|
|
|
func TestStringW(t *testing.T) {
|
|
|
|
strings := []string{
|
|
|
|
"hello",
|
2014-06-17 10:17:33 -06:00
|
|
|
"a\u5566\u7788b",
|
2014-06-17 01:36:23 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range strings {
|
2014-06-17 10:17:33 -06:00
|
|
|
var b []uint16
|
2014-06-17 01:36:23 -06:00
|
|
|
for _, c := range s {
|
2014-06-17 10:17:33 -06:00
|
|
|
b = append(b, uint16(c))
|
|
|
|
if c != rune(uint16(c)) {
|
2014-06-17 01:36:23 -06:00
|
|
|
t.Errorf("bad test: stringW can't handle >16 bit runes")
|
|
|
|
}
|
|
|
|
}
|
2014-06-17 10:17:33 -06:00
|
|
|
b = append(b, 0)
|
2014-06-17 01:36:23 -06:00
|
|
|
r := runtime.GostringW(b)
|
|
|
|
if r != s {
|
|
|
|
t.Errorf("gostringW(%v) = %s, want %s", b, r, s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-08 12:37:18 -06:00
|
|
|
|
|
|
|
func TestLargeStringConcat(t *testing.T) {
|
|
|
|
output := executeTest(t, largeStringConcatSource, nil)
|
|
|
|
want := "panic: " + strings.Repeat("0", 1<<10) + strings.Repeat("1", 1<<10) +
|
|
|
|
strings.Repeat("2", 1<<10) + strings.Repeat("3", 1<<10)
|
|
|
|
if !strings.HasPrefix(output, want) {
|
|
|
|
t.Fatalf("output does not start with %q:\n%s", want, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var largeStringConcatSource = `
|
|
|
|
package main
|
|
|
|
import "strings"
|
|
|
|
func main() {
|
|
|
|
s0 := strings.Repeat("0", 1<<10)
|
|
|
|
s1 := strings.Repeat("1", 1<<10)
|
|
|
|
s2 := strings.Repeat("2", 1<<10)
|
|
|
|
s3 := strings.Repeat("3", 1<<10)
|
|
|
|
s := s0 + s1 + s2 + s3
|
|
|
|
panic(s)
|
|
|
|
}
|
|
|
|
`
|