mirror of
https://github.com/json-iterator/go.git
synced 2024-11-24 08:22:14 +02:00
181 lines
5.3 KiB
Go
181 lines
5.3 KiB
Go
package jsoniter
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/json-iterator/go/require"
|
|
"strconv"
|
|
"testing"
|
|
)
|
|
|
|
func Test_read_big_float(t *testing.T) {
|
|
should := require.New(t)
|
|
iter := ParseString(ConfigDefault, `12.3`)
|
|
val := iter.ReadBigFloat()
|
|
val64, _ := val.Float64()
|
|
should.Equal(12.3, val64)
|
|
}
|
|
|
|
func Test_read_big_int(t *testing.T) {
|
|
should := require.New(t)
|
|
iter := ParseString(ConfigDefault, `92233720368547758079223372036854775807`)
|
|
val := iter.ReadBigInt()
|
|
should.NotNil(val)
|
|
should.Equal(`92233720368547758079223372036854775807`, val.String())
|
|
}
|
|
|
|
func Test_read_float(t *testing.T) {
|
|
inputs := []string{`1.1`, `1000`, `9223372036854775807`, `12.3`, `-12.3`, `720368.54775807`, `720368.547758075`}
|
|
for _, input := range inputs {
|
|
// non-streaming
|
|
t.Run(fmt.Sprintf("%v", input), func(t *testing.T) {
|
|
should := require.New(t)
|
|
iter := ParseString(ConfigDefault, input+",")
|
|
expected, err := strconv.ParseFloat(input, 32)
|
|
should.Nil(err)
|
|
should.Equal(float32(expected), iter.ReadFloat32())
|
|
})
|
|
t.Run(fmt.Sprintf("%v", input), func(t *testing.T) {
|
|
should := require.New(t)
|
|
iter := ParseString(ConfigDefault, input+",")
|
|
expected, err := strconv.ParseFloat(input, 64)
|
|
should.Nil(err)
|
|
should.Equal(expected, iter.ReadFloat64())
|
|
})
|
|
// streaming
|
|
t.Run(fmt.Sprintf("%v", input), func(t *testing.T) {
|
|
should := require.New(t)
|
|
iter := Parse(ConfigDefault, bytes.NewBufferString(input+","), 2)
|
|
expected, err := strconv.ParseFloat(input, 32)
|
|
should.Nil(err)
|
|
should.Equal(float32(expected), iter.ReadFloat32())
|
|
})
|
|
t.Run(fmt.Sprintf("%v", input), func(t *testing.T) {
|
|
should := require.New(t)
|
|
iter := Parse(ConfigDefault, bytes.NewBufferString(input+","), 2)
|
|
expected, err := strconv.ParseFloat(input, 64)
|
|
should.Nil(err)
|
|
should.Equal(expected, iter.ReadFloat64())
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_read_float_as_interface(t *testing.T) {
|
|
should := require.New(t)
|
|
iter := ParseString(ConfigDefault, `12.3`)
|
|
should.Equal(float64(12.3), iter.Read())
|
|
}
|
|
|
|
func Test_wrap_float(t *testing.T) {
|
|
should := require.New(t)
|
|
str, err := MarshalToString(WrapFloat64(12.3))
|
|
should.Nil(err)
|
|
should.Equal("12.3", str)
|
|
}
|
|
|
|
func Test_write_float32(t *testing.T) {
|
|
vals := []float32{0, 1, -1, 99, 0xff, 0xfff, 0xffff, 0xfffff, 0xffffff, 0x4ffffff, 0xfffffff,
|
|
-0x4ffffff, -0xfffffff, 1.2345, 1.23456, 1.234567, 1.001}
|
|
for _, val := range vals {
|
|
t.Run(fmt.Sprintf("%v", val), func(t *testing.T) {
|
|
should := require.New(t)
|
|
buf := &bytes.Buffer{}
|
|
stream := NewStream(ConfigDefault, buf, 4096)
|
|
stream.WriteFloat32Lossy(val)
|
|
stream.Flush()
|
|
should.Nil(stream.Error)
|
|
should.Equal(strconv.FormatFloat(float64(val), 'f', -1, 32), buf.String())
|
|
})
|
|
t.Run(fmt.Sprintf("%v", val), func(t *testing.T) {
|
|
should := require.New(t)
|
|
buf := &bytes.Buffer{}
|
|
stream := NewStream(ConfigDefault, buf, 4096)
|
|
stream.WriteVal(val)
|
|
stream.Flush()
|
|
should.Nil(stream.Error)
|
|
should.Equal(strconv.FormatFloat(float64(val), 'f', -1, 32), buf.String())
|
|
})
|
|
}
|
|
should := require.New(t)
|
|
buf := &bytes.Buffer{}
|
|
stream := NewStream(ConfigDefault, buf, 10)
|
|
stream.WriteRaw("abcdefg")
|
|
stream.WriteFloat32Lossy(1.123456)
|
|
stream.Flush()
|
|
should.Nil(stream.Error)
|
|
should.Equal("abcdefg1.123456", buf.String())
|
|
}
|
|
|
|
func Test_write_float64(t *testing.T) {
|
|
vals := []float64{0, 1, -1, 99, 0xff, 0xfff, 0xffff, 0xfffff, 0xffffff, 0x4ffffff, 0xfffffff,
|
|
-0x4ffffff, -0xfffffff, 1.2345, 1.23456, 1.234567, 1.001}
|
|
for _, val := range vals {
|
|
t.Run(fmt.Sprintf("%v", val), func(t *testing.T) {
|
|
should := require.New(t)
|
|
buf := &bytes.Buffer{}
|
|
stream := NewStream(ConfigDefault, buf, 4096)
|
|
stream.WriteFloat64Lossy(val)
|
|
stream.Flush()
|
|
should.Nil(stream.Error)
|
|
should.Equal(strconv.FormatFloat(val, 'f', -1, 64), buf.String())
|
|
})
|
|
t.Run(fmt.Sprintf("%v", val), func(t *testing.T) {
|
|
should := require.New(t)
|
|
buf := &bytes.Buffer{}
|
|
stream := NewStream(ConfigDefault, buf, 4096)
|
|
stream.WriteVal(val)
|
|
stream.Flush()
|
|
should.Nil(stream.Error)
|
|
should.Equal(strconv.FormatFloat(val, 'f', -1, 64), buf.String())
|
|
})
|
|
}
|
|
should := require.New(t)
|
|
buf := &bytes.Buffer{}
|
|
stream := NewStream(ConfigDefault, buf, 10)
|
|
stream.WriteRaw("abcdefg")
|
|
stream.WriteFloat64Lossy(1.123456)
|
|
stream.Flush()
|
|
should.Nil(stream.Error)
|
|
should.Equal("abcdefg1.123456", buf.String())
|
|
}
|
|
|
|
func Test_read_float64_cursor(t *testing.T) {
|
|
should := require.New(t)
|
|
iter := ParseString(ConfigDefault, "[1.23456789\n,2,3]")
|
|
should.True(iter.ReadArray())
|
|
should.Equal(1.23456789, iter.Read())
|
|
should.True(iter.ReadArray())
|
|
should.Equal(float64(2), iter.Read())
|
|
}
|
|
|
|
func Test_read_float_scientific(t *testing.T) {
|
|
should := require.New(t)
|
|
var obj interface{}
|
|
should.Nil(UnmarshalFromString(`1e1`, &obj))
|
|
should.Equal(float64(10), obj)
|
|
should.Nil(json.Unmarshal([]byte(`1e1`), &obj))
|
|
should.Equal(float64(10), obj)
|
|
should.Nil(UnmarshalFromString(`1.0e1`, &obj))
|
|
should.Equal(float64(10), obj)
|
|
should.Nil(json.Unmarshal([]byte(`1.0e1`), &obj))
|
|
should.Equal(float64(10), obj)
|
|
}
|
|
|
|
func Benchmark_jsoniter_float(b *testing.B) {
|
|
b.ReportAllocs()
|
|
input := []byte(`1.1123,`)
|
|
iter := NewIterator(ConfigDefault)
|
|
for n := 0; n < b.N; n++ {
|
|
iter.ResetBytes(input)
|
|
iter.ReadFloat64()
|
|
}
|
|
}
|
|
|
|
func Benchmark_json_float(b *testing.B) {
|
|
for n := 0; n < b.N; n++ {
|
|
result := float64(0)
|
|
json.Unmarshal([]byte(`1.1`), &result)
|
|
}
|
|
}
|