mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-11 23:47:32 +08:00
20 lines
349 B
Go
20 lines
349 B
Go
package minio
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestName(t *testing.T) {
|
|
//u, err := makeTargetURL(&minio.Client{}, "openim", "test.png", "", false, nil)
|
|
//if err != nil {
|
|
// panic(err)
|
|
//}
|
|
//u.String()
|
|
//t.Log(percentEncodeSlash("1234"))
|
|
//
|
|
//t.Log(FastRand())
|
|
t.Log(makeTargetURL(nil, "", "", "", false, nil))
|
|
//t.Log(privateNew("", nil))
|
|
|
|
}
|