package jsoniter

import (
	"fmt"
	"testing"

	"github.com/stretchr/testify/require"
)

var boolConvertMap = map[string]bool{
	"null":  false,
	"true":  true,
	"false": false,

	`"true"`:  true,
	`"false"`: true,

	"123":   true,
	`"123"`: true,
	"0":     false,
	`"0"`:   false,
	"-1":    true,
	`"-1"`:  true,

	"1.1":       true,
	"0.0":       false,
	"-1.1":      true,
	`""`:        false,
	"[1,2]":     true,
	"[]":        false,
	"{}":        true,
	`{"abc":1}`: true,
}

func Test_read_bool_as_any(t *testing.T) {
	should := require.New(t)

	var any Any
	for k, v := range boolConvertMap {
		any = Get([]byte(k))
		if v {
			should.True(any.ToBool(), fmt.Sprintf("origin val is %v", k))
		} else {
			should.False(any.ToBool(), fmt.Sprintf("origin val is %v", k))
		}
	}

}

func Test_write_bool_to_stream(t *testing.T) {
	should := require.New(t)
	any := Get([]byte("true"))
	stream := NewStream(ConfigDefault, nil, 32)
	any.WriteTo(stream)
	should.Equal("true", string(stream.Buffer()))
	should.Equal(any.ValueType(), Bool)

	any = Get([]byte("false"))
	stream = NewStream(ConfigDefault, nil, 32)
	any.WriteTo(stream)
	should.Equal("false", string(stream.Buffer()))

	should.Equal(any.ValueType(), Bool)
}