@@ -804,23 +804,20 @@ func TestJQHandlesGithubJSONWithRealWorldExampleQuery(t *testing.T) {
804
804
}
805
805
}
806
806
807
- func TestJQWithNewlineDelimitedInputAndFieldQueryProducesSelectedFields (t * testing.T ) {
807
+ func TestJQCorrectlyQueriesMultilineInputFields (t * testing.T ) {
808
808
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\n 2\n "
811
+ got , err := script .Echo (input ).JQ (".a" ).String ()
814
812
if err != nil {
815
813
t .Fatal (err )
816
814
}
817
815
if want != got {
818
- t .Error (want , got )
819
816
t .Error (cmp .Diff (want , got ))
820
817
}
821
818
}
822
819
823
- func TestJQWithNewlineDelimitedInputAndArrayInputAndElementQueryProducesSelectedElements (t * testing.T ) {
820
+ func TestJQCorrectlyQueriesMultilineInputArrays (t * testing.T ) {
824
821
t .Parallel ()
825
822
input := `[1, 2, 3]` + "\n " + `[4, 5, 6]`
826
823
want := "1\n 4\n "
@@ -829,30 +826,6 @@ func TestJQWithNewlineDelimitedInputAndArrayInputAndElementQueryProducesSelected
829
826
t .Fatal (err )
830
827
}
831
828
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 )
856
829
t .Error (cmp .Diff (want , got ))
857
830
}
858
831
}
@@ -875,16 +848,15 @@ func TestJQErrorsWithInvalidInput(t *testing.T) {
875
848
}
876
849
}
877
850
878
- func TestJQWithNewlineDelimitedInputErrorsAfterFirstInvalidInput (t * testing.T ) {
851
+ func TestJQProducesValidResultsUntilFirstError (t * testing.T ) {
879
852
t .Parallel ()
880
- input := `[0]` + " \n " + `[1` + " \n " + `[2]` // missing `]` in second line
881
- want := "0 \n "
853
+ input := "[1] \n invalid JSON value"
854
+ want := "1 \n "
882
855
got , err := script .Echo (input ).JQ (".[0]" ).String ()
883
856
if err == nil {
884
- t .Fatal ("want error from invalid JSON, got nil" )
857
+ t .Fatal ("want error from invalid JSON input , got nil" )
885
858
}
886
859
if want != got {
887
- t .Error (want , got )
888
860
t .Error (cmp .Diff (want , got ))
889
861
}
890
862
}
0 commit comments