hcl/json/navigation_test.go
Martin Atkins 6c4344623b Unfold the "hcl" directory up into the root
The main HCL package is more visible this way, and so it's easier than
having to pick it out from dozens of other package directories.
2019-09-09 16:08:19 -07:00

59 lines
973 B
Go

package json
import (
"fmt"
"strconv"
"testing"
)
func TestNavigationContextString(t *testing.T) {
src := `
{
"version": 1,
"resource": {
"null_resource": {
"baz": {
"id": "foo"
},
"boz": [
{
"ov": { }
}
]
}
}
}
`
file, diags := Parse([]byte(src), "test.json")
if len(diags) != 0 {
fmt.Printf("offset %d\n", diags[0].Subject.Start.Byte)
t.Errorf("Unexpected diagnostics: %s", diags)
}
if file == nil {
t.Fatalf("Got nil file")
}
nav := file.Nav.(navigation)
tests := []struct {
Offset int
Want string
}{
{0, ``},
{8, ``},
{36, `resource`},
{60, `resource.null_resource`},
{89, `resource.null_resource.baz`},
{141, `resource.null_resource.boz`},
}
for _, test := range tests {
t.Run(strconv.Itoa(test.Offset), func(t *testing.T) {
got := nav.ContextString(test.Offset)
if got != test.Want {
t.Errorf("wrong result\ngot: %s\nwant: %s", got, test.Want)
}
})
}
}