2019-07-17 18:20:09 +00:00
|
|
|
package requests
|
|
|
|
|
|
|
|
import (
|
2019-09-04 18:21:56 +00:00
|
|
|
"net/http"
|
|
|
|
"net/url"
|
2019-07-17 18:20:09 +00:00
|
|
|
"regexp"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"474420502.top/eson/gjson"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestWorkflow(t *testing.T) {
|
|
|
|
ses := NewSession()
|
|
|
|
|
|
|
|
t.Run("set cookie", func(t *testing.T) {
|
|
|
|
resp, err := ses.Get("http://httpbin.org/cookies/set").AddKVCookie("a", "1").Execute()
|
|
|
|
if err != nil {
|
|
|
|
t.Error("cookies set error", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !regexp.MustCompile(`"a": "1"`).MatchString(resp.readContent) {
|
|
|
|
t.Error(resp.readContent)
|
|
|
|
}
|
|
|
|
|
|
|
|
wf := ses.Get("http://httpbin.org/cookies/set")
|
|
|
|
resp, err = wf.AddKVCookie("b", "2").Execute()
|
|
|
|
if err != nil {
|
|
|
|
t.Error("cookies set error", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
result := gjson.Get(resp.readContent, "cookies.a")
|
|
|
|
if result.Exists() {
|
|
|
|
t.Error(resp.readContent)
|
|
|
|
}
|
|
|
|
|
|
|
|
result = gjson.Get(resp.readContent, "cookies.b")
|
|
|
|
if result.Int() != 2 {
|
|
|
|
t.Error(resp.readContent)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err = wf.AddKVCookie("a", "3").Execute()
|
|
|
|
results := gjson.GetMany(resp.readContent, "cookies.a", "cookies.b")
|
|
|
|
if results[0].Int() != 3 {
|
|
|
|
t.Error(resp.readContent)
|
|
|
|
}
|
|
|
|
|
|
|
|
if results[1].Int() != 2 {
|
|
|
|
t.Error(resp.readContent)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err = wf.AddHeader("XX", "123").SetRawURL("http://httpbin.org/headers").Execute()
|
|
|
|
if err != nil {
|
|
|
|
t.Error("cookies set error", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// headers 只能是String 表示
|
|
|
|
result = gjson.Get(resp.readContent, "headers.Xx")
|
|
|
|
if result.String() != "123" {
|
|
|
|
t.Error(resp.readContent)
|
|
|
|
}
|
|
|
|
})
|
2019-09-04 10:29:52 +00:00
|
|
|
|
2019-07-17 18:20:09 +00:00
|
|
|
}
|
2019-09-04 18:21:56 +00:00
|
|
|
|
|
|
|
func TestWorkflow_SetHeader(t *testing.T) {
|
|
|
|
ses := NewSession()
|
|
|
|
wf := ses.Get("http://httpbin.org/headers")
|
|
|
|
var header http.Header
|
|
|
|
header = make(http.Header)
|
|
|
|
header["Eson"] = []string{"Bad"}
|
|
|
|
header["HaHa"] = []string{"xixi"}
|
|
|
|
wf.SetHeader(header)
|
|
|
|
|
|
|
|
resp, err := wf.Execute()
|
|
|
|
if err == nil && gjson.Get(resp.Content(), "headers.Eson").String() != "Bad" {
|
|
|
|
t.Error("wf header error", resp.Content())
|
|
|
|
}
|
|
|
|
|
|
|
|
if err == nil && gjson.Get(resp.Content(), "headers.Haha").String() != "xixi" {
|
|
|
|
t.Error("wf header error", resp.Content())
|
|
|
|
}
|
|
|
|
|
|
|
|
// 输入不符合规范不 会自动转换
|
|
|
|
if wf.GetHeader()["HaHa"][0] != "xixi" {
|
|
|
|
t.Error("Header 错误")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(ses.GetHeader()) != 0 {
|
|
|
|
t.Error("session header should be zero")
|
|
|
|
}
|
|
|
|
|
|
|
|
delete(header, "HaHa")
|
|
|
|
ses.SetHeader(header)
|
|
|
|
wf = ses.Get("http://httpbin.org/headers")
|
|
|
|
wf.AddHeader("Hello", "Hehe")
|
|
|
|
|
|
|
|
resp, err = wf.Execute()
|
|
|
|
if err != nil || gjson.Get(resp.Content(), "headers.Eson").String() != "Bad" {
|
|
|
|
t.Error("wf header error", resp.Content())
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil || gjson.Get(resp.Content(), "headers.Hello").String() != "Hehe" {
|
|
|
|
t.Error("wf header error", resp.Content())
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(wf.GetHeader()) != 1 || wf.GetHeader()["Hello"][0] != "Hehe" {
|
|
|
|
t.Error("session header should be 1")
|
|
|
|
}
|
|
|
|
|
|
|
|
cheader := wf.GetCombineHeader()
|
|
|
|
if len(cheader) != 2 || cheader["Eson"][0] != "Bad" {
|
|
|
|
t.Error("GetCombineHeader error")
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err = wf.DelHeader("Hello").Execute()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err, resp.Content())
|
|
|
|
}
|
|
|
|
|
|
|
|
if gjson.Get(resp.Content(), "headers.Hello").Exists() {
|
|
|
|
t.Error(" wf.DelHeader error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWorkflow_Cookies(t *testing.T) {
|
|
|
|
ses := NewSession()
|
|
|
|
u, err := url.Parse("http://httpbin.org")
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
ses.SetCookies(u, []*http.Cookie{&http.Cookie{Name: "Request", Value: "Cookiejar"}})
|
|
|
|
wf := ses.Get("http://httpbin.org/cookies")
|
|
|
|
wf.AddCookie(&http.Cookie{Name: "eson", Value: "Bad"})
|
|
|
|
|
|
|
|
resp, _ := wf.Execute()
|
|
|
|
if gjson.Get(resp.Content(), "cookies.Request").String() != "Cookiejar" {
|
|
|
|
t.Error(" wf.AddCookie error")
|
|
|
|
}
|
|
|
|
|
|
|
|
if gjson.Get(resp.Content(), "cookies.eson").String() != "Bad" {
|
|
|
|
t.Error(" wf.AddCookie error")
|
|
|
|
}
|
|
|
|
|
|
|
|
wf.DelCookie("eson")
|
|
|
|
resp, _ = wf.Execute()
|
|
|
|
if gjson.Get(resp.Content(), "cookies.Request").String() != "Cookiejar" {
|
|
|
|
t.Error(" wf.AddCookie error")
|
|
|
|
}
|
|
|
|
if gjson.Get(resp.Content(), "cookies.eson").Exists() {
|
|
|
|
t.Error(" wf.DelCookie error")
|
|
|
|
}
|
|
|
|
|
|
|
|
wf.AddCookies([]*http.Cookie{&http.Cookie{Name: "A", Value: "AA"}, &http.Cookie{Name: "B", Value: "BB"}})
|
|
|
|
|
|
|
|
resp, _ = wf.Execute()
|
|
|
|
if gjson.Get(resp.Content(), "cookies.Request").String() != "Cookiejar" {
|
|
|
|
t.Error(" wf.AddCookie error")
|
|
|
|
}
|
|
|
|
if gjson.Get(resp.Content(), "cookies.A").String() != "AA" {
|
|
|
|
t.Error(" wf.AddCookies error")
|
|
|
|
}
|
|
|
|
|
|
|
|
if gjson.Get(resp.Content(), "cookies.B").String() != "BB" {
|
|
|
|
t.Error(" wf.AddCookies error")
|
|
|
|
}
|
|
|
|
|
|
|
|
wf.DelCookie(&http.Cookie{Name: "A", Value: "AA"})
|
|
|
|
resp, _ = wf.Execute()
|
|
|
|
if gjson.Get(resp.Content(), "cookies.A").Exists() {
|
|
|
|
t.Error(" wf.AddCookies error")
|
|
|
|
}
|
|
|
|
|
|
|
|
if gjson.Get(resp.Content(), "cookies.B").String() != "BB" {
|
|
|
|
t.Error(" wf.AddCookies error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWorkflow_URL(t *testing.T) {
|
|
|
|
ses := NewSession()
|
|
|
|
wf := ses.Get("http://httpbin.org/")
|
|
|
|
u, err := url.Parse("http://httpbin.org/get")
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
wf.SetParsedURL(u)
|
|
|
|
resp, _ := wf.Execute()
|
|
|
|
if gjson.Get(resp.Content(), "url").String() != "http://httpbin.org/get" {
|
|
|
|
t.Error("SetParsedURL ", resp.Content())
|
|
|
|
}
|
|
|
|
|
|
|
|
if wf.GetParsedURL().String() != "http://httpbin.org/get" {
|
|
|
|
t.Error("SetParsedURL ", resp.Content())
|
|
|
|
}
|
|
|
|
|
|
|
|
wf = ses.Get("http://httpbin.org/")
|
|
|
|
|
|
|
|
resp, _ = wf.SetURLRawPath("/get").Execute()
|
|
|
|
if gjson.Get(resp.Content(), "url").String() != "http://httpbin.org/get" {
|
|
|
|
t.Error("SetParsedURL ", resp.Content())
|
|
|
|
}
|
|
|
|
|
|
|
|
if wf.GetURLRawPath() != "/get" {
|
|
|
|
t.Error("SetParsedURL ", resp.Content())
|
|
|
|
}
|
|
|
|
}
|