-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponse.go
269 lines (225 loc) · 6.23 KB
/
response.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
package fasthttp
import (
"encoding/json"
"errors"
"fmt"
"net/url"
"strings"
http "github.com/valyala/fasthttp"
"github.com/grafana/sobek"
"github.com/tidwall/gjson"
"go.k6.io/k6/js/common"
"go.k6.io/k6/js/modules/k6/html"
"go.k6.io/k6/lib/netext/httpext"
)
// Response is a representation of an HTTP response to be returned to the goja VM
type Response struct {
*httpext.Response `js:"-"`
client *Client
cachedJSON interface{}
validatedJSON bool
}
type jsonError struct {
line int
character int
err error
}
func (j jsonError) Error() string {
errMessage := "cannot parse json due to an error at line"
return fmt.Sprintf("%s %d, character %d , error: %v", errMessage, j.line, j.character, j.err)
}
// HTML returns the body as an html.Selection
func (res *Response) HTML(selector ...string) html.Selection {
rt := res.client.vu.Runtime()
if res.Body == nil {
err := fmt.Errorf("the body is null so we can't transform it to HTML" +
" - this likely was because of a request error getting the response")
common.Throw(rt, err)
}
body, err := common.ToString(res.Body)
if err != nil {
common.Throw(rt, err)
}
sel, err := html.ParseHTML(rt, body)
if err != nil {
common.Throw(rt, err)
}
sel.URL = res.URL
if len(selector) > 0 {
sel = sel.Find(selector[0])
}
return sel
}
// JSON parses the body of a response as JSON and returns it to the goja VM.
func (res *Response) JSON(selector ...string) sobek.Value {
rt := res.client.vu.Runtime()
if res.Body == nil {
err := fmt.Errorf("the body is null so we can't transform it to JSON" +
" - this likely was because of a request error getting the response")
common.Throw(rt, err)
}
hasSelector := len(selector) > 0
if res.cachedJSON == nil || hasSelector { //nolint:nestif
var v interface{}
body, err := common.ToBytes(res.Body)
if err != nil {
common.Throw(rt, err)
}
if hasSelector {
if !res.validatedJSON {
if !gjson.ValidBytes(body) {
return sobek.Undefined()
}
res.validatedJSON = true
}
result := gjson.GetBytes(body, selector[0])
if !result.Exists() {
return sobek.Undefined()
}
return rt.ToValue(result.Value())
}
if err := json.Unmarshal(body, &v); err != nil {
var syntaxError *json.SyntaxError
if errors.As(err, &syntaxError) {
err = checkErrorInJSON(body, int(syntaxError.Offset), err)
}
common.Throw(rt, err)
}
res.validatedJSON = true
res.cachedJSON = v
}
return rt.ToValue(res.cachedJSON)
}
func checkErrorInJSON(input []byte, offset int, err error) error {
lf := '\n'
str := string(input)
// Humans tend to count from 1.
line := 1
character := 0
for i, b := range str {
if b == lf {
line++
character = 0
}
character++
if i == offset {
break
}
}
return jsonError{line: line, character: character, err: err}
}
// SubmitForm parses the body as an html looking for a from and then submitting it
// TODO: document the actual arguments that can be provided
func (res *Response) SubmitForm(args ...sobek.Value) (*Response, error) {
rt := res.client.vu.Runtime()
formSelector := "form"
submitSelector := "[type=\"submit\"]"
var fields map[string]sobek.Value
if len(args) > 0 {
params := args[0].ToObject(rt)
for _, k := range params.Keys() {
switch k {
case "formSelector":
formSelector = params.Get(k).String()
case "submitSelector":
submitSelector = params.Get(k).String()
case "fields":
if rt.ExportTo(params.Get(k), &fields) != nil {
fields = nil
}
}
}
}
form := res.HTML(formSelector)
if form.Size() == 0 {
common.Throw(rt, fmt.Errorf("no form found for selector '%s' in response '%s'", formSelector, res.URL))
}
methodAttr := form.Attr("method")
var requestMethod string
if methodAttr == sobek.Undefined() {
// Use GET by default
requestMethod = http.MethodGet
} else {
requestMethod = strings.ToUpper(methodAttr.String())
}
responseURL, err := url.Parse(res.URL)
if err != nil {
common.Throw(rt, err)
}
actionAttr := form.Attr("action")
var requestURL *url.URL
if actionAttr == sobek.Undefined() {
// Use the url of the response if no action is set
requestURL = responseURL
} else {
actionURL, err := url.Parse(actionAttr.String())
if err != nil {
common.Throw(rt, err)
}
requestURL = responseURL.ResolveReference(actionURL)
}
// Set the body based on the form values
values := form.SerializeObject()
// Set the name + value of the submit button
submit := form.Find(submitSelector)
submitName := submit.Attr("name")
submitValue := submit.Val()
if submitName != sobek.Undefined() && submitValue != sobek.Undefined() {
values[submitName.String()] = submitValue
}
// Set the values supplied in the arguments, overriding automatically set values
for k, v := range fields {
values[k] = v
}
if requestMethod == http.MethodGet {
q := url.Values{}
for k, v := range values {
q.Add(k, v.String())
}
requestURL.RawQuery = q.Encode()
reqWrapper := &RequestWrapper{
Url: requestURL.String(),
}
return res.client.makeReq(reqWrapper, http.MethodGet)
}
reqWrapper := &RequestWrapper{
Url: requestURL.String(),
}
return res.client.makeReq(reqWrapper, requestMethod)
}
// ClickLink parses the body as an html, looks for a link and than makes a request as if the link was
// clicked
func (res *Response) ClickLink(args ...sobek.Value) (*Response, error) {
rt := res.client.vu.Runtime()
selector := "a[href]"
if len(args) > 0 {
params := args[0].ToObject(rt)
for _, k := range params.Keys() {
switch k {
case "selector":
selector = params.Get(k).String()
}
}
}
responseURL, err := url.Parse(res.URL)
if err != nil {
common.Throw(rt, err)
}
link := res.HTML(selector)
if link.Size() == 0 {
common.Throw(rt, fmt.Errorf("no element found for selector '%s' in response '%s'", selector, res.URL))
}
hrefAttr := link.Attr("href")
if hrefAttr == sobek.Undefined() {
common.Throw(rt, fmt.Errorf("no valid href attribute value found on element '%s' in response '%s'", selector, res.URL))
}
hrefURL, err := url.Parse(hrefAttr.String())
if err != nil {
common.Throw(rt, err)
}
requestURL := responseURL.ResolveReference(hrefURL)
reqWrapper := &RequestWrapper{
Url: requestURL.String(),
}
return res.client.makeReq(reqWrapper, http.MethodGet)
}