d2c9089812
This JSON-flavored ContextString implementation returns a chain of property names using JavaScript-style attribute access syntax.
51 lines
827 B
Go
51 lines
827 B
Go
package json
|
|
|
|
import (
|
|
"strconv"
|
|
"testing"
|
|
)
|
|
|
|
func TestNavigationContextString(t *testing.T) {
|
|
src := `
|
|
{
|
|
"version": 1,
|
|
"resource": {
|
|
"null_resource": {
|
|
"baz": {
|
|
"id": "foo"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
file, diags := Parse([]byte(src), "test.json")
|
|
if len(diags) != 0 {
|
|
t.Errorf("Unexpected diagnostics: %#v", 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`},
|
|
}
|
|
|
|
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)
|
|
}
|
|
})
|
|
}
|
|
}
|