| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- package jsoniter
- import (
- "encoding/json"
- "testing"
- "github.com/json-iterator/go/require"
- "bytes"
- "io"
- )
- func Test_empty_array(t *testing.T) {
- should := require.New(t)
- iter := ParseString(`[]`)
- cont := iter.ReadArray()
- should.False(cont)
- iter = ParseString(`[]`)
- iter.ReadArrayCB(func(iter *Iterator) bool {
- should.FailNow("should not call")
- return true
- })
- }
- func Test_one_element(t *testing.T) {
- should := require.New(t)
- iter := ParseString(`[1]`)
- should.True(iter.ReadArray())
- should.Equal(1, iter.ReadInt())
- should.False(iter.ReadArray())
- iter = ParseString(`[1]`)
- iter.ReadArrayCB(func(iter *Iterator) bool {
- should.Equal(1, iter.ReadInt())
- return true
- })
- }
- func Test_two_elements(t *testing.T) {
- should := require.New(t)
- iter := ParseString(`[1,2]`)
- should.True(iter.ReadArray())
- should.Equal(int64(1), iter.ReadInt64())
- should.True(iter.ReadArray())
- should.Equal(int64(2), iter.ReadInt64())
- should.False(iter.ReadArray())
- iter = ParseString(`[1,2]`)
- should.Equal([]interface{}{float64(1), float64(2)}, iter.Read())
- }
- func Test_read_empty_array_as_any(t *testing.T) {
- should := require.New(t)
- any, err := UnmarshalAnyFromString("[]")
- should.Nil(err)
- should.Equal(0, any.Size())
- }
- func Test_read_one_element_array_as_any(t *testing.T) {
- should := require.New(t)
- any, err := UnmarshalAnyFromString("[1]")
- should.Nil(err)
- should.Equal(1, any.Size())
- }
- func Test_read_two_element_array_as_any(t *testing.T) {
- should := require.New(t)
- any, err := UnmarshalAnyFromString("[1,2]")
- should.Nil(err)
- should.Equal(1, any.Get(0).ToInt())
- should.Equal(2, any.Size())
- }
- func Test_invalid_array(t *testing.T) {
- _, err := UnmarshalAnyFromString("[")
- if err == nil || err == io.EOF {
- t.FailNow()
- }
- }
- func Test_whitespace_in_head(t *testing.T) {
- iter := ParseString(` [1]`)
- cont := iter.ReadArray()
- if cont != true {
- t.FailNow()
- }
- if iter.ReadUint64() != 1 {
- t.FailNow()
- }
- }
- func Test_whitespace_after_array_start(t *testing.T) {
- iter := ParseString(`[ 1]`)
- cont := iter.ReadArray()
- if cont != true {
- t.FailNow()
- }
- if iter.ReadUint64() != 1 {
- t.FailNow()
- }
- }
- func Test_whitespace_before_array_end(t *testing.T) {
- iter := ParseString(`[1 ]`)
- cont := iter.ReadArray()
- if cont != true {
- t.FailNow()
- }
- if iter.ReadUint64() != 1 {
- t.FailNow()
- }
- cont = iter.ReadArray()
- if cont != false {
- t.FailNow()
- }
- }
- func Test_whitespace_before_comma(t *testing.T) {
- iter := ParseString(`[1 ,2]`)
- cont := iter.ReadArray()
- if cont != true {
- t.FailNow()
- }
- if iter.ReadUint64() != 1 {
- t.FailNow()
- }
- cont = iter.ReadArray()
- if cont != true {
- t.FailNow()
- }
- if iter.ReadUint64() != 2 {
- t.FailNow()
- }
- cont = iter.ReadArray()
- if cont != false {
- t.FailNow()
- }
- }
- func Test_write_array(t *testing.T) {
- should := require.New(t)
- buf := &bytes.Buffer{}
- stream := NewStream(buf, 4096)
- stream.IndentionStep = 2
- stream.WriteArrayStart()
- stream.WriteInt(1)
- stream.WriteMore()
- stream.WriteInt(2)
- stream.WriteArrayEnd()
- stream.Flush()
- should.Nil(stream.Error)
- should.Equal("[\n 1,\n 2\n]", buf.String())
- }
- func Test_write_val_array(t *testing.T) {
- should := require.New(t)
- val := []int{1, 2, 3}
- str, err := MarshalToString(val)
- should.Nil(err)
- should.Equal("[1,2,3]", str)
- }
- func Test_write_val_empty_array(t *testing.T) {
- should := require.New(t)
- val := []int{}
- str, err := MarshalToString(val)
- should.Nil(err)
- should.Equal("[]", str)
- }
- func Benchmark_jsoniter_array(b *testing.B) {
- b.ReportAllocs()
- input := []byte(`[1,2,3,4,5,6,7,8,9]`)
- iter := ParseBytes(input)
- b.ResetTimer()
- for n := 0; n < b.N; n++ {
- iter.ResetBytes(input)
- for iter.ReadArray() {
- iter.ReadUint64()
- }
- }
- }
- func Benchmark_json_array(b *testing.B) {
- for n := 0; n < b.N; n++ {
- result := []interface{}{}
- json.Unmarshal([]byte(`[1,2,3]`), &result)
- }
- }
|