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 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
package json
import (
"fmt"
"strings"
"testing"
"github.com/hashicorp/hcl/v2"
"github.com/zclconf/go-cty/cty"
)
func TestParse_nonObject(t *testing.T) {
src := `true`
file, diags := Parse([]byte(src), "")
if len(diags) != 1 {
t.Errorf("got %d diagnostics; want 1", len(diags))
}
if file == nil {
t.Errorf("got nil File; want actual file")
}
if file.Body == nil {
t.Fatalf("got nil Body; want actual body")
}
if file.Body.(*body).val == nil {
t.Errorf("got nil Body object; want placeholder object")
}
}
func TestParseTemplate(t *testing.T) {
src := `{"greeting": "hello ${\"world\"}"}`
file, diags := Parse([]byte(src), "")
if len(diags) != 0 {
t.Errorf("got %d diagnostics on parse; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
if file == nil {
t.Errorf("got nil File; want actual file")
}
if file.Body == nil {
t.Fatalf("got nil Body; want actual body")
}
attrs, diags := file.Body.JustAttributes()
if len(diags) != 0 {
t.Errorf("got %d diagnostics on decode; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
val, diags := attrs["greeting"].Expr.Value(&hcl.EvalContext{})
if len(diags) != 0 {
t.Errorf("got %d diagnostics on eval; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
if !val.RawEquals(cty.StringVal("hello world")) {
t.Errorf("wrong result %#v; want %#v", val, cty.StringVal("hello world"))
}
}
func TestParseTemplateUnwrap(t *testing.T) {
src := `{"greeting": "${true}"}`
file, diags := Parse([]byte(src), "")
if len(diags) != 0 {
t.Errorf("got %d diagnostics on parse; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
if file == nil {
t.Errorf("got nil File; want actual file")
}
if file.Body == nil {
t.Fatalf("got nil Body; want actual body")
}
attrs, diags := file.Body.JustAttributes()
if len(diags) != 0 {
t.Errorf("got %d diagnostics on decode; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
val, diags := attrs["greeting"].Expr.Value(&hcl.EvalContext{})
if len(diags) != 0 {
t.Errorf("got %d diagnostics on eval; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
if !val.RawEquals(cty.True) {
t.Errorf("wrong result %#v; want %#v", val, cty.True)
}
}
func TestParse_malformed(t *testing.T) {
src := `{
"http_proxy_url: "http://xxxxxx",
}`
file, diags := Parse([]byte(src), "")
if got, want := len(diags), 2; got != want {
t.Errorf("got %d diagnostics; want %d", got, want)
}
if err, want := diags.Error(), `Missing property value colon`; !strings.Contains(err, want) {
t.Errorf("diags are %q, but should contain %q", err, want)
}
if file == nil {
t.Errorf("got nil File; want actual file")
}
}
func TestParseWithStartPos(t *testing.T) {
src := `{
"foo": {
"bar": "baz"
}
}`
part := `{
"bar": "baz"
}`
file, diags := Parse([]byte(src), "")
partFile, partDiags := ParseWithStartPos([]byte(part), "", hcl.Pos{Byte: 0, Line: 2, Column: 10})
if len(diags) != 0 {
t.Errorf("got %d diagnostics on parse src; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
if len(partDiags) != 0 {
t.Errorf("got %d diagnostics on parse part src; want 0", len(partDiags))
for _, diag := range partDiags {
t.Logf("- %s", diag.Error())
}
}
if file == nil {
t.Errorf("got nil File; want actual file")
}
if file.Body == nil {
t.Fatalf("got nil Body; want actual body")
}
if partFile == nil {
t.Errorf("got nil part File; want actual file")
}
if partFile.Body == nil {
t.Fatalf("got nil part Body; want actual body")
}
content, diags := file.Body.Content(&hcl.BodySchema{
Blocks: []hcl.BlockHeaderSchema{{Type: "foo"}},
})
if len(diags) != 0 {
t.Errorf("got %d diagnostics on decode; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
attrs, diags := content.Blocks[0].Body.JustAttributes()
if len(diags) != 0 {
t.Errorf("got %d diagnostics on decode; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
srcRange := attrs["bar"].Expr.Range()
partAttrs, diags := partFile.Body.JustAttributes()
if len(diags) != 0 {
t.Errorf("got %d diagnostics on decode; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
partRange := partAttrs["bar"].Expr.Range()
if srcRange.String() != partRange.String() {
t.Errorf("The two ranges did not match: src=%s, part=%s", srcRange, partRange)
}
}
func TestParseExpression(t *testing.T) {
tests := []struct {
Input string
Want string
}{
{
`"hello"`,
`cty.StringVal("hello")`,
},
{
`"hello ${noun}"`,
`cty.StringVal("hello world")`,
},
{
"true",
"cty.True",
},
{
"false",
"cty.False",
},
{
"1",
"cty.NumberIntVal(1)",
},
{
"{}",
"cty.EmptyObjectVal",
},
{
`{"foo":"bar","baz":1}`,
`cty.ObjectVal(map[string]cty.Value{"baz":cty.NumberIntVal(1), "foo":cty.StringVal("bar")})`,
},
{
"[]",
"cty.EmptyTupleVal",
},
{
`["1",2,3]`,
`cty.TupleVal([]cty.Value{cty.StringVal("1"), cty.NumberIntVal(2), cty.NumberIntVal(3)})`,
},
}
for _, test := range tests {
t.Run(test.Input, func(t *testing.T) {
expr, diags := ParseExpression([]byte(test.Input), "")
if diags.HasErrors() {
t.Errorf("got %d diagnostics; want 0", len(diags))
for _, d := range diags {
t.Logf(" - %s", d.Error())
}
}
value, diags := expr.Value(&hcl.EvalContext{
Variables: map[string]cty.Value{
"noun": cty.StringVal("world"),
},
})
if diags.HasErrors() {
t.Errorf("got %d diagnostics on decode value; want 0", len(diags))
for _, d := range diags {
t.Logf(" - %s", d.Error())
}
}
got := fmt.Sprintf("%#v", value)
if got != test.Want {
t.Errorf("got %s, but want %s", got, test.Want)
}
})
}
}
func TestParseExpression_malformed(t *testing.T) {
src := `invalid`
expr, diags := ParseExpression([]byte(src), "")
if got, want := len(diags), 1; got != want {
t.Errorf("got %d diagnostics; want %d", got, want)
}
if err, want := diags.Error(), `Invalid JSON keyword`; !strings.Contains(err, want) {
t.Errorf("diags are %q, but should contain %q", err, want)
}
if expr == nil {
t.Errorf("got nil Expression; want actual expression")
}
}
func TestParseExpressionWithStartPos(t *testing.T) {
src := `{
"foo": "bar"
}`
part := `"bar"`
file, diags := Parse([]byte(src), "")
partExpr, partDiags := ParseExpressionWithStartPos([]byte(part), "", hcl.Pos{Byte: 0, Line: 2, Column: 10})
if len(diags) != 0 {
t.Errorf("got %d diagnostics on parse src; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
if len(partDiags) != 0 {
t.Errorf("got %d diagnostics on parse part src; want 0", len(partDiags))
for _, diag := range partDiags {
t.Logf("- %s", diag.Error())
}
}
if file == nil {
t.Errorf("got nil File; want actual file")
}
if file.Body == nil {
t.Errorf("got nil Body: want actual body")
}
if partExpr == nil {
t.Errorf("got nil Expression; want actual expression")
}
content, diags := file.Body.Content(&hcl.BodySchema{
Attributes: []hcl.AttributeSchema{{Name: "foo"}},
})
if len(diags) != 0 {
t.Errorf("got %d diagnostics on decode; want 0", len(diags))
for _, diag := range diags {
t.Logf("- %s", diag.Error())
}
}
expr := content.Attributes["foo"].Expr
if expr.Range().String() != partExpr.Range().String() {
t.Errorf("The two ranges did not match: src=%s, part=%s", expr.Range(), partExpr.Range())
}
}
|