From a447a8f797e34977d9250f85a6cabfcb189c1bcc Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Mon, 10 Jul 2017 02:41:59 -0400 Subject: [PATCH] Add tests for malformed string input --- jsoniter_string_test.go | 49 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/jsoniter_string_test.go b/jsoniter_string_test.go index 713af75..a05ef91 100644 --- a/jsoniter_string_test.go +++ b/jsoniter_string_test.go @@ -6,11 +6,58 @@ import ( "bytes" "encoding/json" "fmt" - "github.com/stretchr/testify/require" "testing" "unicode/utf8" + + "github.com/stretchr/testify/require" ) +func Test_read_string(t *testing.T) { + badInputs := []string{ + ``, + `"`, + `"\"`, + `"\\\"`, + "\"\n\"", + `navy`, + } + + for _, input := range badInputs { + testReadString(t, input, "", true, "json.Unmarshal", json.Unmarshal) + testReadString(t, input, "", true, "jsoniter.Unmarshal", Unmarshal) + testReadString(t, input, "", true, "jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal", ConfigCompatibleWithStandardLibrary.Unmarshal) + } + + goodInputs := []struct { + input string + expectValue string + }{ + {`""`, ""}, + {`"a"`, "a"}, + {`null`, ""}, + {`"Iñtërnâtiônàlizætiøn,💝🐹🌇⛔"`, "Iñtërnâtiônàlizætiøn,💝🐹🌇⛔"}, + } + + for _, tc := range goodInputs { + testReadString(t, tc.input, tc.expectValue, false, "json.Unmarshal", json.Unmarshal) + testReadString(t, tc.input, tc.expectValue, false, "jsoniter.Unmarshal", Unmarshal) + testReadString(t, tc.input, tc.expectValue, false, "jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal", ConfigCompatibleWithStandardLibrary.Unmarshal) + } +} + +func testReadString(t *testing.T, input string, expectValue string, expectError bool, marshalerName string, marshaler func([]byte, interface{}) error) { + var value string + err := marshaler([]byte(input), &value) + if expectError != (err != nil) { + t.Errorf("%q: %s: expected error %v, got %v", input, marshalerName, expectError, err) + return + } + if value != expectValue { + t.Errorf("%q: %s: expected %q, got %q", input, marshalerName, expectValue, value) + return + } +} + func Test_read_normal_string(t *testing.T) { cases := map[string]string{ `"0123456789012345678901234567890123456789"`: `0123456789012345678901234567890123456789`,