Skip to content

Commit 8744d7c

Browse files
committed
\n should not be ignored in base64 decode
2 parents 37cc313 + 2ddf6d7 commit 8744d7c

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

misc_tests/jsoniter_array_test.go

+13-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ package misc_tests
33
import (
44
"bytes"
55
"encoding/json"
6+
"testing"
7+
68
"github.com/json-iterator/go"
79
"github.com/stretchr/testify/require"
8-
"testing"
910
)
1011

1112
func Test_empty_array(t *testing.T) {
@@ -168,6 +169,17 @@ func Test_decode_byte_array_from_base64(t *testing.T) {
168169
should.Equal([]byte{1, 2, 3}, data)
169170
}
170171

172+
func Test_decode_byte_array_from_base64_with_newlines(t *testing.T) {
173+
should := require.New(t)
174+
data := []byte{}
175+
err := json.Unmarshal([]byte(`"A\rQ\nID"`), &data)
176+
should.Nil(err)
177+
should.Equal([]byte{1, 2, 3}, data)
178+
err = jsoniter.Unmarshal([]byte(`"A\rQ\nID"`), &data)
179+
should.Nil(err)
180+
should.Equal([]byte{1, 2, 3}, data)
181+
}
182+
171183
func Test_decode_byte_array_from_array(t *testing.T) {
172184
should := require.New(t)
173185
data := []byte{}

reflect_native.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ package jsoniter
22

33
import (
44
"encoding/base64"
5-
"github.com/modern-go/reflect2"
65
"reflect"
76
"strconv"
87
"unsafe"
8+
9+
"github.com/modern-go/reflect2"
910
)
1011

1112
const ptrSize = 32 << uintptr(^uintptr(0)>>63)

0 commit comments

Comments
 (0)