1
0
mirror of https://github.com/json-iterator/go.git synced 2025-04-04 21:34:16 +02:00
json-iterator/jsoniter_adapter_test.go

34 lines
905 B
Go
Raw Normal View History

2017-06-02 15:38:20 +08:00
package jsoniter
import (
"testing"
"github.com/json-iterator/go/require"
"encoding/json"
"bytes"
2017-06-02 16:00:12 +08:00
"io/ioutil"
2017-06-02 15:38:20 +08:00
)
func Test_new_decoder(t *testing.T) {
should := require.New(t)
2017-06-02 16:00:12 +08:00
decoder1 := json.NewDecoder(bytes.NewBufferString(`[1][2]`))
decoder2 := NewDecoder(bytes.NewBufferString(`[1][2]`))
2017-06-02 15:38:20 +08:00
arr1 := []int{}
should.Nil(decoder1.Decode(&arr1))
should.Equal([]int{1}, arr1)
arr2 := []int{}
2017-06-02 16:00:12 +08:00
should.True(decoder1.More())
buffered, _ := ioutil.ReadAll(decoder1.Buffered())
should.Equal("[2]", string(buffered))
2017-06-02 15:38:20 +08:00
should.Nil(decoder2.Decode(&arr2))
2017-06-02 16:00:12 +08:00
should.Equal([]int{1}, arr2)
should.True(decoder2.More())
buffered, _ = ioutil.ReadAll(decoder2.Buffered())
should.Equal("[2]", string(buffered))
should.Nil(decoder1.Decode(&arr1))
should.Equal([]int{2}, arr1)
should.False(decoder1.More())
should.Nil(decoder2.Decode(&arr2))
should.Equal([]int{2}, arr2)
should.False(decoder2.More())
2017-06-02 15:38:20 +08:00
}