mirror of
https://github.com/httprunner/httprunner.git
synced 2026-07-12 16:01:27 +08:00
refactor: session request url str, fix lazy setup
This commit is contained in:
@@ -121,7 +121,8 @@ func (ud *UIA2Driver) DeleteSession() (err error) {
|
||||
if ud.Session.ID == "" {
|
||||
return nil
|
||||
}
|
||||
if _, err = ud.Session.DELETE("/session", ud.Session.ID); err == nil {
|
||||
urlStr := fmt.Sprintf("/session/%s", ud.Session.ID)
|
||||
if _, err = ud.Session.DELETE(urlStr); err == nil {
|
||||
ud.Session.ID = ""
|
||||
}
|
||||
|
||||
@@ -150,7 +151,8 @@ func (ud *UIA2Driver) Status() (deviceStatus types.DeviceStatus, err error) {
|
||||
func (ud *UIA2Driver) DeviceInfo() (deviceInfo types.DeviceInfo, err error) {
|
||||
// register(getHandler, new GetDeviceInfo("/wd/hub/session/:sessionId/appium/device/info"))
|
||||
var rawResp DriverRawResponse
|
||||
if rawResp, err = ud.Session.GET("/session", ud.Session.ID, "appium/device/info"); err != nil {
|
||||
urlStr := fmt.Sprintf("/session/%s/appium/device/info", ud.Session.ID)
|
||||
if rawResp, err = ud.Session.GET(urlStr); err != nil {
|
||||
return types.DeviceInfo{}, err
|
||||
}
|
||||
reply := new(struct{ Value struct{ types.DeviceInfo } })
|
||||
@@ -164,7 +166,8 @@ func (ud *UIA2Driver) DeviceInfo() (deviceInfo types.DeviceInfo, err error) {
|
||||
func (ud *UIA2Driver) BatteryInfo() (batteryInfo types.BatteryInfo, err error) {
|
||||
// register(getHandler, new GetBatteryInfo("/wd/hub/session/:sessionId/appium/device/battery_info"))
|
||||
var rawResp DriverRawResponse
|
||||
if rawResp, err = ud.Session.GET("/session", ud.Session.ID, "appium/device/battery_info"); err != nil {
|
||||
urlStr := fmt.Sprintf("/session/%s/appium/device/battery_info", ud.Session.ID)
|
||||
if rawResp, err = ud.Session.GET(urlStr); err != nil {
|
||||
return types.BatteryInfo{}, err
|
||||
}
|
||||
reply := new(struct{ Value struct{ types.BatteryInfo } })
|
||||
@@ -186,7 +189,8 @@ func (ud *UIA2Driver) WindowSize() (size types.Size, err error) {
|
||||
}
|
||||
|
||||
var rawResp DriverRawResponse
|
||||
if rawResp, err = ud.Session.GET("/session", ud.Session.ID, "window/:windowHandle/size"); err != nil {
|
||||
urlStr := fmt.Sprintf("/session/%s/window/:windowHandle/size", ud.Session.ID)
|
||||
if rawResp, err = ud.Session.GET(urlStr); err != nil {
|
||||
return types.Size{}, errors.Wrap(err, "get window size failed by UIA2 request")
|
||||
}
|
||||
reply := new(struct{ Value struct{ types.Size } })
|
||||
@@ -212,7 +216,8 @@ func (ud *UIA2Driver) WindowSize() (size types.Size, err error) {
|
||||
// Back simulates a short press on the BACK button.
|
||||
func (ud *UIA2Driver) Back() (err error) {
|
||||
// register(postHandler, new PressBack("/wd/hub/session/:sessionId/back"))
|
||||
_, err = ud.Session.POST(nil, "/session", ud.Session.ID, "back")
|
||||
urlStr := fmt.Sprintf("/session/%s/back", ud.Session.ID)
|
||||
_, err = ud.Session.POST(nil, urlStr)
|
||||
return
|
||||
}
|
||||
|
||||
@@ -227,14 +232,16 @@ func (ud *UIA2Driver) PressKeyCodes(keyCode KeyCode, metaState KeyMeta, flags ..
|
||||
if len(flags) != 0 {
|
||||
data["flags"] = flags[0]
|
||||
}
|
||||
_, err = ud.Session.POST(data, "/session", ud.Session.ID, "appium/device/press_keycode")
|
||||
urlStr := fmt.Sprintf("/session/%s/appium/device/press_keycode", ud.Session.ID)
|
||||
_, err = ud.Session.POST(data, urlStr)
|
||||
return
|
||||
}
|
||||
|
||||
func (ud *UIA2Driver) Orientation() (orientation types.Orientation, err error) {
|
||||
// [[FBRoute GET:@"/orientation"] respondWithTarget:self action:@selector(handleGetOrientation:)]
|
||||
var rawResp DriverRawResponse
|
||||
if rawResp, err = ud.Session.GET("/session", ud.Session.ID, "/orientation"); err != nil {
|
||||
urlStr := fmt.Sprintf("/session/%s/orientation", ud.Session.ID)
|
||||
if rawResp, err = ud.Session.GET(urlStr); err != nil {
|
||||
return "", err
|
||||
}
|
||||
reply := new(struct{ Value types.Orientation })
|
||||
@@ -270,7 +277,8 @@ func (ud *UIA2Driver) DoubleTapXY(x, y float64, opts ...option.ActionOption) err
|
||||
},
|
||||
}
|
||||
|
||||
_, err = ud.Session.POST(data, "/session", ud.Session.ID, "actions/tap")
|
||||
urlStr := fmt.Sprintf("/session/%s/actions/tap", ud.Session.ID)
|
||||
_, err = ud.Session.POST(data, urlStr)
|
||||
return err
|
||||
}
|
||||
|
||||
@@ -309,7 +317,8 @@ func (ud *UIA2Driver) TapAbsXY(x, y float64, opts ...option.ActionOption) error
|
||||
}
|
||||
option.MergeOptions(data, opts...)
|
||||
|
||||
_, err := ud.Session.POST(data, "/session", ud.Session.ID, "actions/tap")
|
||||
urlStr := fmt.Sprintf("/session/%s/actions/tap", ud.Session.ID)
|
||||
_, err := ud.Session.POST(data, urlStr)
|
||||
return err
|
||||
}
|
||||
|
||||
@@ -328,7 +337,8 @@ func (ud *UIA2Driver) TouchAndHold(x, y float64, opts ...option.ActionOption) (e
|
||||
"duration": int(duration * 1000),
|
||||
},
|
||||
}
|
||||
_, err = ud.Session.POST(data, "/session", ud.Session.ID, "touch/longclick")
|
||||
urlStr := fmt.Sprintf("/session/%s/touch/longclick", ud.Session.ID)
|
||||
_, err = ud.Session.POST(data, urlStr)
|
||||
return
|
||||
}
|
||||
|
||||
@@ -354,7 +364,8 @@ func (ud *UIA2Driver) Drag(fromX, fromY, toX, toY float64, opts ...option.Action
|
||||
option.MergeOptions(data, opts...)
|
||||
|
||||
// register(postHandler, new Drag("/wd/hub/session/:sessionId/touch/drag"))
|
||||
_, err = ud.Session.POST(data, "/session", ud.Session.ID, "touch/drag")
|
||||
urlStr := fmt.Sprintf("/session/%s/touch/drag", ud.Session.ID)
|
||||
_, err = ud.Session.POST(data, urlStr)
|
||||
return err
|
||||
}
|
||||
|
||||
@@ -395,7 +406,8 @@ func (ud *UIA2Driver) Swipe(fromX, fromY, toX, toY float64, opts ...option.Actio
|
||||
}
|
||||
option.MergeOptions(data, opts...)
|
||||
|
||||
_, err = ud.Session.POST(data, "/session", ud.Session.ID, "actions/swipe")
|
||||
urlStr := fmt.Sprintf("/session/%s/actions/swipe", ud.Session.ID)
|
||||
_, err = ud.Session.POST(data, urlStr)
|
||||
return err
|
||||
}
|
||||
|
||||
@@ -413,7 +425,8 @@ func (ud *UIA2Driver) SetPasteboard(contentType types.PasteboardType, content st
|
||||
"content": base64.StdEncoding.EncodeToString([]byte(content)),
|
||||
}
|
||||
// register(postHandler, new SetClipboard("/wd/hub/session/:sessionId/appium/device/set_clipboard"))
|
||||
_, err = ud.Session.POST(data, "/session", ud.Session.ID, "appium/device/set_clipboard")
|
||||
urlStr := fmt.Sprintf("/session/%s/appium/device/set_clipboard", ud.Session.ID)
|
||||
_, err = ud.Session.POST(data, urlStr)
|
||||
return
|
||||
}
|
||||
|
||||
@@ -426,7 +439,8 @@ func (ud *UIA2Driver) GetPasteboard(contentType types.PasteboardType) (raw *byte
|
||||
"contentType": contentType[0],
|
||||
}
|
||||
var rawResp DriverRawResponse
|
||||
if rawResp, err = ud.Session.POST(data, "/session", ud.Session.ID, "appium/device/get_clipboard"); err != nil {
|
||||
urlStr := fmt.Sprintf("/session/%s/appium/device/get_clipboard", ud.Session.ID)
|
||||
if rawResp, err = ud.Session.POST(data, urlStr); err != nil {
|
||||
return
|
||||
}
|
||||
reply := new(struct{ Value string })
|
||||
@@ -455,7 +469,8 @@ func (ud *UIA2Driver) Input(text string, opts ...option.ActionOption) (err error
|
||||
"text": text,
|
||||
}
|
||||
option.MergeOptions(data, opts...)
|
||||
_, err = ud.Session.POST(data, "/session", ud.Session.ID, "/keys")
|
||||
urlStr := fmt.Sprintf("/session/%s/keys", ud.Session.ID)
|
||||
_, err = ud.Session.POST(data, urlStr)
|
||||
return
|
||||
}
|
||||
|
||||
@@ -510,14 +525,16 @@ func (ud *UIA2Driver) SendActionKey(text string, opts ...option.ActionOption) (e
|
||||
}
|
||||
option.MergeOptions(data, opts...)
|
||||
|
||||
_, err = ud.Session.POST(data, "/session", ud.Session.ID, "/actions/keys")
|
||||
urlStr := fmt.Sprintf("/session/%s/actions/keys", ud.Session.ID)
|
||||
_, err = ud.Session.POST(data, urlStr)
|
||||
return
|
||||
}
|
||||
|
||||
func (ud *UIA2Driver) Rotation() (rotation types.Rotation, err error) {
|
||||
// register(getHandler, new GetRotation("/wd/hub/session/:sessionId/rotation"))
|
||||
var rawResp DriverRawResponse
|
||||
if rawResp, err = ud.Session.GET("/session", ud.Session.ID, "rotation"); err != nil {
|
||||
urlStr := fmt.Sprintf("/session/%s/rotation", ud.Session.ID)
|
||||
if rawResp, err = ud.Session.GET(urlStr); err != nil {
|
||||
return types.Rotation{}, err
|
||||
}
|
||||
reply := new(struct{ Value types.Rotation })
|
||||
@@ -538,7 +555,8 @@ func (ud *UIA2Driver) ScreenShot(opts ...option.ActionOption) (raw *bytes.Buffer
|
||||
func (ud *UIA2Driver) Source(srcOpt ...option.SourceOption) (source string, err error) {
|
||||
// register(getHandler, new Source("/wd/hub/session/:sessionId/source"))
|
||||
var rawResp DriverRawResponse
|
||||
if rawResp, err = ud.Session.GET("/session", ud.Session.ID, "source"); err != nil {
|
||||
urlStr := fmt.Sprintf("/session/%s/source", ud.Session.ID)
|
||||
if rawResp, err = ud.Session.GET(urlStr); err != nil {
|
||||
return "", err
|
||||
}
|
||||
reply := new(struct{ Value string })
|
||||
|
||||
Reference in New Issue
Block a user