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

Failure with root pointer #2

Open
dolmen opened this issue Apr 24, 2023 · 0 comments
Open

Failure with root pointer #2

dolmen opened this issue Apr 24, 2023 · 0 comments

Comments

@dolmen
Copy link

dolmen commented Apr 24, 2023

"" (empty string) is the JSON pointer pointing to the root of a document.

This code fails with error invalid character 'u' looking for beginning of value. Check on the Go Playground.

package main

import (
	"testing"

	"github.com/lestrrat-go/jsonptr"
)

func TestGet(t *testing.T) {
	doc, err := jsonptr.Parse([]byte(`null`))
	if err != nil {
		t.Error("valid doc")
	}
	var v any
	err = doc.Unmarshal("", &v)
	if err != nil {
		t.Errorf("valid pointer but got error: %q", err)
	}
	if v != nil {
		t.Error("null expected")
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant