Skip to content

Commit 22c403a

Browse files
committed
tweaks
1 parent 53cb451 commit 22c403a

File tree

2 files changed

+26
-51
lines changed

2 files changed

+26
-51
lines changed

script.go

+17-14
Original file line numberDiff line numberDiff line change
@@ -712,31 +712,34 @@ func (p *Pipe) Join() *Pipe {
712712
})
713713
}
714714

715-
// JQ executes query on the pipe's contents (presumed to be newline-delimited
716-
// JSON), applying the query to each input value and producing the results. An
717-
// invalid query or value will set the appropriate error on the pipe.
718-
715+
// JQ executes query on the pipe's contents (presumed to be valid JSON or
716+
// [JSONLines] data), applying the query to each newline-delimited input value
717+
// and producing results until the first error is encountered. An invalid query
718+
// or value will set the appropriate error on the pipe.
719+
//
719720
// The exact dialect of JQ supported is that provided by
720721
// [github.com/itchyny/gojq], whose documentation explains the differences
721722
// between it and standard JQ.
723+
//
724+
// [JSONLines]: https://jsonlines.org/
722725
func (p *Pipe) JQ(query string) *Pipe {
726+
parsedQuery, err := gojq.Parse(query)
727+
if err != nil {
728+
return p.WithError(err)
729+
}
730+
code, err := gojq.Compile(parsedQuery)
731+
if err != nil {
732+
return p.WithError(err)
733+
}
723734
return p.Filter(func(r io.Reader, w io.Writer) error {
724-
q, err := gojq.Parse(query)
725-
if err != nil {
726-
return err
727-
}
728-
c, err := gojq.Compile(q)
729-
if err != nil {
730-
return err
731-
}
732735
dec := json.NewDecoder(r)
733736
for dec.More() {
734-
var input interface{}
737+
var input any
735738
err := dec.Decode(&input)
736739
if err != nil {
737740
return err
738741
}
739-
iter := c.Run(input)
742+
iter := code.Run(input)
740743
for {
741744
v, ok := iter.Next()
742745
if !ok {

script_test.go

+9-37
Original file line numberDiff line numberDiff line change
@@ -804,23 +804,20 @@ func TestJQHandlesGithubJSONWithRealWorldExampleQuery(t *testing.T) {
804804
}
805805
}
806806

807-
func TestJQWithNewlineDelimitedInputAndFieldQueryProducesSelectedFields(t *testing.T) {
807+
func TestJQCorrectlyQueriesMultilineInputFields(t *testing.T) {
808808
t.Parallel()
809-
input := `{"timestamp": 1649264191, "iss_position": {"longitude": "52.8439", "latitude": "10.8107"}, "message": "success"}` + "\n"
810-
input += input
811-
want := `{"latitude":"10.8107","longitude":"52.8439"}` + "\n"
812-
want += want
813-
got, err := script.Echo(input).JQ(".iss_position").String()
809+
input := `{"a":1}` + "\n" + `{"a":2}`
810+
want := "1\n2\n"
811+
got, err := script.Echo(input).JQ(".a").String()
814812
if err != nil {
815813
t.Fatal(err)
816814
}
817815
if want != got {
818-
t.Error(want, got)
819816
t.Error(cmp.Diff(want, got))
820817
}
821818
}
822819

823-
func TestJQWithNewlineDelimitedInputAndArrayInputAndElementQueryProducesSelectedElements(t *testing.T) {
820+
func TestJQCorrectlyQueriesMultilineInputArrays(t *testing.T) {
824821
t.Parallel()
825822
input := `[1, 2, 3]` + "\n" + `[4, 5, 6]`
826823
want := "1\n4\n"
@@ -829,30 +826,6 @@ func TestJQWithNewlineDelimitedInputAndArrayInputAndElementQueryProducesSelected
829826
t.Fatal(err)
830827
}
831828
if want != got {
832-
t.Error(want, got)
833-
t.Error(cmp.Diff(want, got))
834-
}
835-
}
836-
837-
func TestJQWithNewlineDelimitedMixedAndPrettyPrintedInputValues(t *testing.T) {
838-
t.Parallel()
839-
input := `
840-
{
841-
"key1": "val1",
842-
"key2": "val2"
843-
}
844-
[
845-
0,
846-
1
847-
]
848-
`
849-
want := `{"key1":"val1","key2":"val2"}` + "\n" + "[0,1]" + "\n"
850-
got, err := script.Echo(input).JQ(".").String()
851-
if err != nil {
852-
t.Fatal(err)
853-
}
854-
if want != got {
855-
t.Error(want, got)
856829
t.Error(cmp.Diff(want, got))
857830
}
858831
}
@@ -875,16 +848,15 @@ func TestJQErrorsWithInvalidInput(t *testing.T) {
875848
}
876849
}
877850

878-
func TestJQWithNewlineDelimitedInputErrorsAfterFirstInvalidInput(t *testing.T) {
851+
func TestJQProducesValidResultsUntilFirstError(t *testing.T) {
879852
t.Parallel()
880-
input := `[0]` + "\n" + `[1` + "\n" + `[2]` // missing `]` in second line
881-
want := "0\n"
853+
input := "[1]\ninvalid JSON value"
854+
want := "1\n"
882855
got, err := script.Echo(input).JQ(".[0]").String()
883856
if err == nil {
884-
t.Fatal("want error from invalid JSON, got nil")
857+
t.Fatal("want error from invalid JSON input, got nil")
885858
}
886859
if want != got {
887-
t.Error(want, got)
888860
t.Error(cmp.Diff(want, got))
889861
}
890862
}

0 commit comments

Comments
 (0)