29 lines
698 B
Go
29 lines
698 B
Go
package logic
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCaseAddressList(t *testing.T) {
|
|
|
|
// http.NewRequest("POST", "http://localhost:8888/user/login", body io.Reader)
|
|
|
|
// ses := requests.NewSession()
|
|
// tp := ses.Post("http://localhost:8888/user/login")
|
|
// resp, err := tp.SetBodyAuto(map[string]interface{}{
|
|
// "name": "devenv@sina.cn",
|
|
// "pwd": "$2y$13$6UFDMZQMEfqFYiNLpiUCi.B3fpvGEamPAjIgzUqv/u7jT05nB3pOC",
|
|
// }, requests.TypeFormData).Execute()
|
|
// if err != nil {
|
|
// panic(err)
|
|
// }
|
|
// log.Println(string(resp.Content()))
|
|
|
|
// resp, err = ses.Get("http://localhost:8888/user/address-list").Execute()
|
|
// if err != nil {
|
|
// panic(err)
|
|
// }
|
|
// log.Println(string(resp.Content()))
|
|
|
|
}
|