| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package serial_test
- import (
- "errors"
- "testing"
- . "v2ray.com/core/common/serial"
- . "v2ray.com/ext/assert"
- )
- func TestToString(t *testing.T) {
- assert := With(t)
- s := "a"
- data := []struct {
- Value interface{}
- String string
- }{
- {Value: s, String: s},
- {Value: &s, String: s},
- {Value: errors.New("t"), String: "t"},
- {Value: []byte{'b', 'c'}, String: "[62,63]"},
- }
- for _, c := range data {
- assert(ToString(c.Value), Equals, c.String)
- }
- }
- func TestConcat(t *testing.T) {
- testCases := []struct {
- Input []interface{}
- Output string
- }{
- {
- Input: []interface{}{
- "a", "b",
- },
- Output: "ab",
- },
- }
- for _, testCase := range testCases {
- actual := Concat(testCase.Input...)
- if actual != testCase.Output {
- t.Error("Unexpected output: ", actual, " but want: ", testCase.Output)
- }
- }
- }
- func BenchmarkConcat(b *testing.B) {
- input := []interface{}{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k"}
- b.ReportAllocs()
- for i := 0; i < b.N; i++ {
- _ = Concat(input...)
- }
- }
|