Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make html.Selection.map return []goja.Value instead of []string #2534

Merged
merged 1 commit into from
Jun 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions js/modules/k6/html/html.go
Original file line number Diff line number Diff line change
Expand Up @@ -426,21 +426,22 @@ func (s Selection) Is(v goja.Value) bool {
}

// Map implements ES5 Array.prototype.map
func (s Selection) Map(v goja.Value) []string {
func (s Selection) Map(v goja.Value) []goja.Value {
gojaFn, isFn := goja.AssertFunction(v)
if !isFn {
common.Throw(s.rt, errors.New("the argument to map() must be a function"))
}

fn := func(idx int, sel *goquery.Selection) string {
var values []goja.Value
s.sel.Each(func(idx int, sel *goquery.Selection) {
selection := &Selection{sel: sel, URL: s.URL, rt: s.rt}

if fnRes, fnErr := gojaFn(v, s.rt.ToValue(idx), s.rt.ToValue(selection)); fnErr == nil {
return fnRes.String()
values = append(values, fnRes)
}
return ""
}
})

return s.sel.Map(fn)
return values
}

func (s Selection) Slice(start int, def ...int) Selection {
Expand Down
107 changes: 101 additions & 6 deletions js/modules/k6/html/html_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,25 @@ const testHTML = `
</body>
`

const testXML = `
<ListAllMyBucketsResult>
<Buckets>
<Bucket>
<CreationDate>1654852823</CreationDate>
<Name>firstBucket</Name>
</Bucket>
<Bucket>
<CreationDate>1654852825</CreationDate>
<Name>secondBucket</Name>
</Bucket>
</Buckets>
<Owner>
<DisplayName>string</DisplayName>
<ID>string</ID>
</Owner>
</ListAllMyBucketsResult>
`

func getTestModuleInstance(t testing.TB) (*goja.Runtime, *ModuleInstance) {
rt := goja.New()
rt.SetFieldNameMapper(common.FieldNameMapper{})
Expand Down Expand Up @@ -409,11 +428,38 @@ func TestParseHTML(t *testing.T) {
t.Run("Valid", func(t *testing.T) {
v, err := rt.RunString(`doc.find("#select_multi option").map(function(idx, val) { return val.text() })`)
if assert.NoError(t, err) {
mapped, ok := v.Export().([]string)
mapped, ok := v.Export().([]goja.Value)
assert.True(t, ok)
assert.Equal(t, 3, len(mapped))
assert.Equal(t, []string{"option 1", "option 2", "option 3"}, mapped)
}
assert.Equal(t, "option 1", mapped[0].String())
assert.Equal(t, "option 2", mapped[1].String())
assert.Equal(t, "option 3", mapped[2].String())
}
})
t.Run("Continues to work with strings", func(t *testing.T) {
_, err := rt.RunString(`
const values = doc
.find("#select_multi option")
.map(function(idx, val) {
return val.text()
})

if (values.length !== 3) {
throw new Error('Expected 3 values, got ' + values.length)
}

for (let i = 0; i < values.length; i++) {
if (typeof values[i] !== 'string') {
throw new Error('Expected string, got ' + values[i].toString())
}

if (values[i].toString() !== 'option ' + (i + 1)) {
throw new Error('Expected value ' + (i + 1) + ', got ' + values[i])
}
}
`)

assert.NoError(t, err)
})
t.Run("Invalid arg", func(t *testing.T) {
_, err := rt.RunString(`doc.find("#select_multi option").map("");`)
Expand All @@ -425,11 +471,60 @@ func TestParseHTML(t *testing.T) {
t.Run("Map with attr must return string", func(t *testing.T) {
v, err := rt.RunString(`doc.find("#select_multi").map(function(idx, val) { return val.attr("name") })`)
if assert.NoError(t, err) {
mapped, ok := v.Export().([]string)
mapped, ok := v.Export().([]goja.Value)
assert.True(t, ok)
assert.Equal(t, 1, len(mapped))
assert.Equal(t, []string{"select_multi"}, mapped)
}
assert.Equal(t, "select_multi", mapped[0].String())
}
})
t.Run("Valid XML", func(t *testing.T) {
rt := getTestRuntimeWithDoc(t, testXML)
testScript := `
const buckets = doc
.find('Buckets')
.children()
.map(function (idx, bucket) {
let bucketObj = {}
bucket.children().each(function (idx, elem) {
switch (elem.nodeName()) {
case 'name':
Object.assign(bucketObj, { name: elem.textContent() })
break
case 'creationdate':
Object.assign(bucketObj, { creationDate: parseInt(elem.textContent(), 10) })
break
}
})
return bucketObj
})

if (buckets.length !== 2) {
throw new Error('Expected 2 buckets, got ' + buckets.length)
}

if (buckets[0].name !== 'firstBucket') {
throw new Error('Expected bucket name to be "firstBucket", got ' + buckets[0].name)
}

if (buckets[0].creationDate !== 1654852823) {
throw new Error(
'Expected bucket creation date to be 1654852823, got ' + buckets[0].creationDate
)
}

if (buckets[1].name != 'secondBucket') {
throw new Error('Expected bucket name to be "secondBucket", got ' + buckets[1].name)
}

if (buckets[1].creationDate !== 1654852825) {
throw new Error(
'Expected bucket creation date to be 1654852825, got ' + buckets[1].creationDate
)
}
`

_, err := rt.RunString(testScript)
assert.NoError(t, err)
})
})
t.Run("Next", func(t *testing.T) {
Expand Down