package WeedFSClient import ( "fmt" "io/ioutil" "testing" ) func TestGetFid(t *testing.T) { //1 方法必须传入testing.T 2 方法名必须是以Test开头,驼峰命名 url := "http://192.168.5.23:6333/dir/assign" path,err := GetFid(url) if err != nil { t.Error("测试失败") } fmt.Println(path) } func TestUpDateFile(t *testing.T) { //1 方法必须传入testing.T 2 方法名必须是以Test开头,驼峰命名 url := "http://192.168.5.23:6120/78,22eae6b7875b67" data,err := ioutil.ReadFile("./105.jpg") path,err := UpDateFile(url,"",data) if err != nil { t.Error("测试失败") } fmt.Println(path) }