mirror of https://github.com/ethereum/go-ethereum
signer/core: accept all solidity primitive types for EIP-712 signing (#26770)
Accept all primitive types in Solidity for EIP-712 from intN, uintN, intN[], uintN[] for N as 0 to 256 in multiples of 8 --------- Co-authored-by: Martin Holst Swende <martin@swende.se>pull/26828/head
parent
f7661a662a
commit
02796f6bee
@ -0,0 +1,40 @@ |
||||
// Copyright 2023 The go-ethereum Authors
|
||||
// This file is part of the go-ethereum library.
|
||||
//
|
||||
// The go-ethereum library is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Lesser General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// The go-ethereum library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
package apitypes |
||||
|
||||
import "testing" |
||||
|
||||
func TestIsPrimitive(t *testing.T) { |
||||
// Expected positives
|
||||
for i, tc := range []string{ |
||||
"int24", "int24[]", "uint88", "uint88[]", "uint", "uint[]", "int256", "int256[]", |
||||
"uint96", "uint96[]", "int96", "int96[]", "bytes17[]", "bytes17", |
||||
} { |
||||
if !isPrimitiveTypeValid(tc) { |
||||
t.Errorf("test %d: expected '%v' to be a valid primitive", i, tc) |
||||
} |
||||
} |
||||
// Expected negatives
|
||||
for i, tc := range []string{ |
||||
"int257", "int257[]", "uint88 ", "uint88 []", "uint257", "uint-1[]", |
||||
"uint0", "uint0[]", "int95", "int95[]", "uint1", "uint1[]", "bytes33[]", "bytess", |
||||
} { |
||||
if isPrimitiveTypeValid(tc) { |
||||
t.Errorf("test %d: expected '%v' to not be a valid primitive", i, tc) |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue