Skip to content

Commit

Permalink
Merge pull request #30684 from hashicorp/alisdair/fix-sum-func
Browse files Browse the repository at this point in the history
functions: Fix sum() of all strings
  • Loading branch information
alisdair committed Mar 16, 2022
2 parents 3727191 + 0764726 commit 0bf4112
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/lang/funcs/collection.go
Expand Up @@ -527,6 +527,10 @@ var SumFunc = function.New(&function.Spec{
if s.IsNull() {
return cty.NilVal, function.NewArgErrorf(0, "argument must be list, set, or tuple of number values")
}
s, err = convert.Convert(s, cty.Number)
if err != nil {
return cty.NilVal, function.NewArgErrorf(0, "argument must be list, set, or tuple of number values")
}
for _, v := range arg[1:] {
if v.IsNull() {
return cty.NilVal, function.NewArgErrorf(0, "argument must be list, set, or tuple of number values")
Expand Down
9 changes: 9 additions & 0 deletions internal/lang/funcs/collection_test.go
Expand Up @@ -1629,6 +1629,15 @@ func TestSum(t *testing.T) {
cty.NilVal,
"can't compute sum of opposing infinities",
},
{
cty.ListVal([]cty.Value{
cty.StringVal("1"),
cty.StringVal("2"),
cty.StringVal("3"),
}),
cty.NumberIntVal(6),
"",
},
}

for _, test := range tests {
Expand Down

0 comments on commit 0bf4112

Please sign in to comment.