|
|
@ -1,6 +1,7 @@ |
|
|
|
package aliyun |
|
|
|
package aliyun |
|
|
|
|
|
|
|
|
|
|
|
import ( |
|
|
|
import ( |
|
|
|
|
|
|
|
"math" |
|
|
|
"testing" |
|
|
|
"testing" |
|
|
|
|
|
|
|
|
|
|
|
"github.com/go-kratos/kratos/v2/log" |
|
|
|
"github.com/go-kratos/kratos/v2/log" |
|
|
@ -97,3 +98,34 @@ func TestLog(t *testing.T) { |
|
|
|
t.Errorf("Log() returns error:%v", err) |
|
|
|
t.Errorf("Log() returns error:%v", err) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func TestToString(t *testing.T) { |
|
|
|
|
|
|
|
tests := []struct { |
|
|
|
|
|
|
|
in interface{} |
|
|
|
|
|
|
|
out string |
|
|
|
|
|
|
|
}{ |
|
|
|
|
|
|
|
{math.MaxFloat64, "17976931348623157000000000000000000000000000000000000" + |
|
|
|
|
|
|
|
"000000000000000000000000000000000000000000000000000000000000000000000000000" + |
|
|
|
|
|
|
|
"000000000000000000000000000000000000000000000000000000000000000000000000000" + |
|
|
|
|
|
|
|
"000000000000000000000000000000000000000000000000000000000000000000000000000" + |
|
|
|
|
|
|
|
"0000000000000000000000000000000"}, |
|
|
|
|
|
|
|
{math.MaxFloat32, "340282346638528860000000000000000000000"}, |
|
|
|
|
|
|
|
{1<<((32<<(^uint(0)>>63))-1) - 1, "9223372036854775807"}, |
|
|
|
|
|
|
|
{uint(1<<(32<<(^uint(0)>>63)) - 1), "-1"}, |
|
|
|
|
|
|
|
{math.MaxInt8, "127"}, |
|
|
|
|
|
|
|
{math.MaxUint8, "255"}, |
|
|
|
|
|
|
|
{math.MaxInt16, "32767"}, |
|
|
|
|
|
|
|
{math.MaxUint16, "65535"}, |
|
|
|
|
|
|
|
{math.MaxInt32, "2147483647"}, |
|
|
|
|
|
|
|
{math.MaxUint32, "4294967295"}, |
|
|
|
|
|
|
|
{math.MaxInt64, "9223372036854775807"}, |
|
|
|
|
|
|
|
{uint64(math.MaxUint64), "18446744073709551615"}, |
|
|
|
|
|
|
|
{"abc", "abc"}, |
|
|
|
|
|
|
|
{[]byte("abc"), "abc"}, |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
for _, test := range tests { |
|
|
|
|
|
|
|
if toString(test.in) != test.out { |
|
|
|
|
|
|
|
t.Fatalf("want: %s, got: %s", test.out, toString(test.in)) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|