github.com/goshafaq/sonic@v0.0.0-20231026082336-871835fb94c6/issue_test/issue381_test.go (about)

     1  /**
     2   * Copyright 2023 ByteDance Inc.
     3   *
     4   * Licensed under the Apache License, Version 2.0 (the "License");
     5   * you may not use this file except in compliance with the License.
     6   * You may obtain a copy of the License at
     7   *
     8   *     http://www.apache.org/licenses/LICENSE-2.0
     9   *
    10   * Unless required by applicable law or agreed to in writing, software
    11   * distributed under the License is distributed on an "AS IS" BASIS,
    12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13   * See the License for the specific language governing permissions and
    14   * limitations under the License.
    15   */
    16  
    17  package issue_test
    18  
    19  import (
    20  	"bytes"
    21  	"encoding/json"
    22  	"strings"
    23  	"testing"
    24  
    25  	_ "github.com/davecgh/go-spew/spew"
    26  	"github.com/goshafaq/sonic"
    27  	"github.com/goshafaq/sonic/option"
    28  	"github.com/stretchr/testify/require"
    29  
    30  	_ "github.com/stretchr/testify/assert"
    31  )
    32  
    33  var decoderBufferSize = option.DefaultDecoderBufferSize
    34  
    35  func testSonicUnmarshal(t *testing.T) {
    36  	val := strings.Repeat(" ", int(decoderBufferSize-3)) + `{"123":{}}`
    37  
    38  	res := make(map[int64]map[string]interface{})
    39  	res2 := make(map[int64]map[string]interface{})
    40  
    41  	dec := sonic.ConfigDefault.NewDecoder(bytes.NewBufferString(val))
    42  	err := dec.Decode(&res)
    43  	require.NoError(t, err)
    44  
    45  	err2 := json.Unmarshal([]byte(val), &res2)
    46  	require.NoError(t, err2)
    47  	require.Equal(t, res2, res)
    48  }
    49  
    50  func TestStreamxx(t *testing.T) {
    51  	testSonicUnmarshal(t)
    52  }