2023-01-21 11:31:23 +00:00
|
|
|
package strings
|
2023-01-13 04:31:35 +00:00
|
|
|
|
2023-02-06 04:13:38 +00:00
|
|
|
import (
|
2023-02-15 16:58:59 +00:00
|
|
|
"fmt"
|
2023-02-06 04:13:38 +00:00
|
|
|
"golang.org/x/exp/constraints"
|
2023-02-15 16:58:59 +00:00
|
|
|
"strings"
|
2023-02-06 04:13:38 +00:00
|
|
|
"testing"
|
|
|
|
)
|
2023-01-13 04:31:35 +00:00
|
|
|
|
|
|
|
func TestStrJoin(t *testing.T) {
|
|
|
|
type args struct {
|
|
|
|
s []string
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
wantStr string
|
|
|
|
}{
|
|
|
|
{name: "t1", args: args{s: []string{"a", "b", "c"}}, wantStr: "abc"},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2023-01-21 11:31:23 +00:00
|
|
|
if gotStr := Join(tt.args.s...); gotStr != tt.wantStr {
|
|
|
|
t.Errorf("Join() = %v, want %v", gotStr, tt.wantStr)
|
2023-01-13 04:31:35 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2023-02-06 04:13:38 +00:00
|
|
|
|
|
|
|
func TestToInteger(t *testing.T) {
|
|
|
|
type args[T constraints.Integer] struct {
|
|
|
|
s string
|
|
|
|
z T
|
|
|
|
}
|
|
|
|
type testCase[T constraints.Integer] struct {
|
|
|
|
name string
|
|
|
|
args args[T]
|
|
|
|
want T
|
|
|
|
}
|
|
|
|
tests := []testCase[int64]{
|
|
|
|
{
|
|
|
|
name: "t1",
|
|
|
|
args: args[int64]{
|
|
|
|
"10",
|
|
|
|
0,
|
|
|
|
},
|
|
|
|
want: int64(10),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
if got := ToInteger[int64](tt.args.s, tt.args.z); got != tt.want {
|
|
|
|
t.Errorf("StrToInt() = %v, want %v", got, tt.want)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2023-02-15 16:58:59 +00:00
|
|
|
|
|
|
|
func TestBuilder_WriteString(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
Builder *strings.Builder
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
s []string
|
|
|
|
}
|
|
|
|
//s :=NewBuilder()
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
wantCount int
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "t1",
|
|
|
|
fields: fields{
|
|
|
|
Builder: &strings.Builder{},
|
|
|
|
},
|
|
|
|
args: args{s: []string{"11", "22", "不"}},
|
|
|
|
wantErr: false,
|
|
|
|
wantCount: 7,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
b := &Builder{
|
|
|
|
Builder: tt.fields.Builder,
|
|
|
|
}
|
2023-02-16 03:53:24 +00:00
|
|
|
gotCount := b.WriteString(tt.args.s...)
|
|
|
|
|
2023-02-15 16:58:59 +00:00
|
|
|
if gotCount != tt.wantCount {
|
|
|
|
t.Errorf("WriteString() gotCount = %v, want %v", gotCount, tt.wantCount)
|
|
|
|
}
|
|
|
|
fmt.Println(b.String())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|