From c61422f65bf1859da9336d764bb328b1882ec287 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Mon, 24 Nov 2025 16:06:33 -0800 Subject: Don't allow decoding bool as int --- ccl_test.go | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) (limited to 'ccl_test.go') diff --git a/ccl_test.go b/ccl_test.go index 6e3ef3f..15d75af 100644 --- a/ccl_test.go +++ b/ccl_test.go @@ -171,22 +171,6 @@ can just span multiple lines"`, desc: "Uint64", msg: `uint64:1`, want: message{Uint64: 1}, - }, { - desc: "IntTrue", - msg: `int:on`, - want: message{Int: 1}, - }, { - desc: "IntFalse", - msg: `int:no`, - want: message{Int: 0}, - }, { - desc: "UintTrue", - msg: `uint:on`, - want: message{Uint: 1}, - }, { - desc: "UintFalse", - msg: `uint:no`, - want: message{Uint: 0}, }, { desc: "IntFloat", msg: `float:-1`, @@ -605,6 +589,30 @@ func TestUnmarshal_InvalidType(t *testing.T) { desc: "RepeatedSingular", msg: `F:[1]`, out: new(struct{ F int }), + }, { + desc: "IntTrue", + msg: `int:on`, + out: new(struct { + F int `ccl:"int"` + }), + }, { + desc: "IntFalse", + msg: `int:no`, + out: new(struct { + F int `ccl:"int"` + }), + }, { + desc: "UintTrue", + msg: `uint:on`, + out: new(struct { + F uint `ccl:"uint"` + }), + }, { + desc: "UintFalse", + msg: `uint:no`, + out: new(struct { + F uint `ccl:"uint"` + }), }} { t.Run(tc.desc, func(t *testing.T) { t.Parallel() -- cgit v1.3.1