35 lines
657 B
Go
35 lines
657 B
Go
package ebaiapi
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.rosy.net.cn/baseapi/utils"
|
|
)
|
|
|
|
func TestSkuCategoryList(t *testing.T) {
|
|
result, err := api.SkuCategoryList("", 1, 0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
} else {
|
|
t.Log(utils.Format4Output(result, false))
|
|
}
|
|
}
|
|
|
|
func TestSkuBrandList(t *testing.T) {
|
|
result, err := api.SkuBrandList("中", 1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
} else {
|
|
t.Log(utils.Format4Output(result, false))
|
|
}
|
|
}
|
|
|
|
func TestPictureUpload(t *testing.T) {
|
|
result, err := api.PictureUpload("http://image.jxc4.com/086d2ba561a93e88526b139b531cfef8.png", nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
} else {
|
|
t.Log(utils.Format4Output(result, false))
|
|
}
|
|
}
|