| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774 |
- // Copyright 2018 The go-ethereum Authors
- // This file is part of go-ethereum.
- //
- // go-ethereum is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // go-ethereum 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 General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
- //
- package core
- import (
- "context"
- "encoding/json"
- "fmt"
- "math/big"
- "testing"
- "github.com/ethereum/go-ethereum/accounts/keystore"
- "github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/common/hexutil"
- )
- var typesStandard = Types{
- "EIP712Domain": {
- {
- Name: "name",
- Type: "string",
- },
- {
- Name: "version",
- Type: "string",
- },
- {
- Name: "chainId",
- Type: "uint256",
- },
- {
- Name: "verifyingContract",
- Type: "address",
- },
- },
- "Person": {
- {
- Name: "name",
- Type: "string",
- },
- {
- Name: "wallet",
- Type: "address",
- },
- },
- "Mail": {
- {
- Name: "from",
- Type: "Person",
- },
- {
- Name: "to",
- Type: "Person",
- },
- {
- Name: "contents",
- Type: "string",
- },
- },
- }
- var jsonTypedData = `
- {
- "types": {
- "EIP712Domain": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "version",
- "type": "string"
- },
- {
- "name": "chainId",
- "type": "uint256"
- },
- {
- "name": "verifyingContract",
- "type": "address"
- }
- ],
- "Person": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "test",
- "type": "uint8"
- },
- {
- "name": "wallet",
- "type": "address"
- }
- ],
- "Mail": [
- {
- "name": "from",
- "type": "Person"
- },
- {
- "name": "to",
- "type": "Person"
- },
- {
- "name": "contents",
- "type": "string"
- }
- ]
- },
- "primaryType": "Mail",
- "domain": {
- "name": "Ether Mail",
- "version": "1",
- "chainId": 1,
- "verifyingContract": "0xCCCcccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
- },
- "message": {
- "from": {
- "name": "Cow",
- "test": 3,
- "wallet": "0xcD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"
- },
- "to": {
- "name": "Bob",
- "wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"
- },
- "contents": "Hello, Bob!"
- }
- }
- `
- const primaryType = "Mail"
- var domainStandard = TypedDataDomain{
- "Ether Mail",
- "1",
- big.NewInt(1),
- "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
- "",
- }
- var messageStandard = map[string]interface{}{
- "from": map[string]interface{}{
- "name": "Cow",
- "wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826",
- },
- "to": map[string]interface{}{
- "name": "Bob",
- "wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB",
- },
- "contents": "Hello, Bob!",
- }
- var typedData = TypedData{
- Types: typesStandard,
- PrimaryType: primaryType,
- Domain: domainStandard,
- Message: messageStandard,
- }
- func TestSignData(t *testing.T) {
- api, control := setup(t)
- //Create two accounts
- createAccount(control, api, t)
- createAccount(control, api, t)
- control <- "1"
- list, err := api.List(context.Background())
- if err != nil {
- t.Fatal(err)
- }
- a := common.NewMixedcaseAddress(list[0])
- control <- "Y"
- control <- "wrongpassword"
- signature, err := api.SignData(context.Background(), TextPlain.Mime, a, hexutil.Encode([]byte("EHLO world")))
- if signature != nil {
- t.Errorf("Expected nil-data, got %x", signature)
- }
- if err != keystore.ErrDecrypt {
- t.Errorf("Expected ErrLocked! '%v'", err)
- }
- control <- "No way"
- signature, err = api.SignData(context.Background(), TextPlain.Mime, a, hexutil.Encode([]byte("EHLO world")))
- if signature != nil {
- t.Errorf("Expected nil-data, got %x", signature)
- }
- if err != ErrRequestDenied {
- t.Errorf("Expected ErrRequestDenied! '%v'", err)
- }
- // text/plain
- control <- "Y"
- control <- "a_long_password"
- signature, err = api.SignData(context.Background(), TextPlain.Mime, a, hexutil.Encode([]byte("EHLO world")))
- if err != nil {
- t.Fatal(err)
- }
- if signature == nil || len(signature) != 65 {
- t.Errorf("Expected 65 byte signature (got %d bytes)", len(signature))
- }
- // data/typed
- control <- "Y"
- control <- "a_long_password"
- signature, err = api.SignTypedData(context.Background(), a, typedData)
- if err != nil {
- t.Fatal(err)
- }
- if signature == nil || len(signature) != 65 {
- t.Errorf("Expected 65 byte signature (got %d bytes)", len(signature))
- }
- }
- func TestHashStruct(t *testing.T) {
- hash, err := typedData.HashStruct(typedData.PrimaryType, typedData.Message)
- if err != nil {
- t.Fatal(err)
- }
- mainHash := fmt.Sprintf("0x%s", common.Bytes2Hex(hash))
- if mainHash != "0xc52c0ee5d84264471806290a3f2c4cecfc5490626bf912d01f240d7a274b371e" {
- t.Errorf("Expected different hashStruct result (got %s)", mainHash)
- }
- hash, err = typedData.HashStruct("EIP712Domain", typedData.Domain.Map())
- if err != nil {
- t.Error(err)
- }
- domainHash := fmt.Sprintf("0x%s", common.Bytes2Hex(hash))
- if domainHash != "0xf2cee375fa42b42143804025fc449deafd50cc031ca257e0b194a650a912090f" {
- t.Errorf("Expected different domain hashStruct result (got %s)", domainHash)
- }
- }
- func TestEncodeType(t *testing.T) {
- domainTypeEncoding := string(typedData.EncodeType("EIP712Domain"))
- if domainTypeEncoding != "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" {
- t.Errorf("Expected different encodeType result (got %s)", domainTypeEncoding)
- }
- mailTypeEncoding := string(typedData.EncodeType(typedData.PrimaryType))
- if mailTypeEncoding != "Mail(Person from,Person to,string contents)Person(string name,address wallet)" {
- t.Errorf("Expected different encodeType result (got %s)", mailTypeEncoding)
- }
- }
- func TestTypeHash(t *testing.T) {
- mailTypeHash := fmt.Sprintf("0x%s", common.Bytes2Hex(typedData.TypeHash(typedData.PrimaryType)))
- if mailTypeHash != "0xa0cedeb2dc280ba39b857546d74f5549c3a1d7bdc2dd96bf881f76108e23dac2" {
- t.Errorf("Expected different typeHash result (got %s)", mailTypeHash)
- }
- }
- func TestEncodeData(t *testing.T) {
- hash, err := typedData.EncodeData(typedData.PrimaryType, typedData.Message, 0)
- if err != nil {
- t.Fatal(err)
- }
- dataEncoding := fmt.Sprintf("0x%s", common.Bytes2Hex(hash))
- if dataEncoding != "0xa0cedeb2dc280ba39b857546d74f5549c3a1d7bdc2dd96bf881f76108e23dac2fc71e5fa27ff56c350aa531bc129ebdf613b772b6604664f5d8dbe21b85eb0c8cd54f074a4af31b4411ff6a60c9719dbd559c221c8ac3492d9d872b041d703d1b5aadf3154a261abdd9086fc627b61efca26ae5702701d05cd2305f7c52a2fc8" {
- t.Errorf("Expected different encodeData result (got %s)", dataEncoding)
- }
- }
- func TestMalformedDomainkeys(t *testing.T) {
- // Verifies that malformed domain keys are properly caught:
- //{
- // "name": "Ether Mail",
- // "version": "1",
- // "chainId": 1,
- // "vxerifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
- //}
- jsonTypedData := `
- {
- "types": {
- "EIP712Domain": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "version",
- "type": "string"
- },
- {
- "name": "chainId",
- "type": "uint256"
- },
- {
- "name": "verifyingContract",
- "type": "address"
- }
- ],
- "Person": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "wallet",
- "type": "address"
- }
- ],
- "Mail": [
- {
- "name": "from",
- "type": "Person"
- },
- {
- "name": "to",
- "type": "Person"
- },
- {
- "name": "contents",
- "type": "string"
- }
- ]
- },
- "primaryType": "Mail",
- "domain": {
- "name": "Ether Mail",
- "version": "1",
- "chainId": 1,
- "vxerifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
- },
- "message": {
- "from": {
- "name": "Cow",
- "wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"
- },
- "to": {
- "name": "Bob",
- "wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"
- },
- "contents": "Hello, Bob!"
- }
- }
- `
- var malformedDomainTypedData TypedData
- err := json.Unmarshal([]byte(jsonTypedData), &malformedDomainTypedData)
- if err != nil {
- t.Fatalf("unmarshalling failed '%v'", err)
- }
- _, err = malformedDomainTypedData.HashStruct("EIP712Domain", malformedDomainTypedData.Domain.Map())
- if err == nil || err.Error() != "provided data '<nil>' doesn't match type 'address'" {
- t.Errorf("Expected `provided data '<nil>' doesn't match type 'address'`, got '%v'", err)
- }
- }
- func TestMalformedTypesAndExtradata(t *testing.T) {
- // Verifies several quirks
- // 1. Using dynamic types and only validating the prefix:
- //{
- // "name": "chainId",
- // "type": "uint256 ... and now for something completely different"
- //}
- // 2. Extra data in message:
- //{
- // "blahonga": "zonk bonk"
- //}
- jsonTypedData := `
- {
- "types": {
- "EIP712Domain": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "version",
- "type": "string"
- },
- {
- "name": "chainId",
- "type": "uint256 ... and now for something completely different"
- },
- {
- "name": "verifyingContract",
- "type": "address"
- }
- ],
- "Person": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "wallet",
- "type": "address"
- }
- ],
- "Mail": [
- {
- "name": "from",
- "type": "Person"
- },
- {
- "name": "to",
- "type": "Person"
- },
- {
- "name": "contents",
- "type": "string"
- }
- ]
- },
- "primaryType": "Mail",
- "domain": {
- "name": "Ether Mail",
- "version": "1",
- "chainId": 1,
- "verifyingContract": "0xCCCcccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
- },
- "message": {
- "from": {
- "name": "Cow",
- "wallet": "0xcD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"
- },
- "to": {
- "name": "Bob",
- "wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"
- },
- "contents": "Hello, Bob!"
- }
- }
- `
- var malformedTypedData TypedData
- err := json.Unmarshal([]byte(jsonTypedData), &malformedTypedData)
- if err != nil {
- t.Fatalf("unmarshalling failed '%v'", err)
- }
- malformedTypedData.Types["EIP712Domain"][2].Type = "uint256"
- malformedTypedData.Message["blahonga"] = "zonk bonk"
- _, err = malformedTypedData.HashStruct(malformedTypedData.PrimaryType, malformedTypedData.Message)
- if err == nil || err.Error() != "there is extra data provided in the message" {
- t.Errorf("Expected `there is extra data provided in the message`, got '%v'", err)
- }
- }
- func TestTypeMismatch(t *testing.T) {
- // Verifies that:
- // 1. Mismatches between the given type and data, i.e. `Person` and
- // the data item is a string, are properly caught:
- //{
- // "name": "contents",
- // "type": "Person"
- //},
- //{
- // "contents": "Hello, Bob!" <-- string not "Person"
- //}
- // 2. Nonexistent types are properly caught:
- //{
- // "name": "contents",
- // "type": "Blahonga"
- //}
- jsonTypedData := `
- {
- "types": {
- "EIP712Domain": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "version",
- "type": "string"
- },
- {
- "name": "chainId",
- "type": "uint256"
- },
- {
- "name": "verifyingContract",
- "type": "address"
- }
- ],
- "Person": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "wallet",
- "type": "address"
- }
- ],
- "Mail": [
- {
- "name": "from",
- "type": "Person"
- },
- {
- "name": "to",
- "type": "Person"
- },
- {
- "name": "contents",
- "type": "Person"
- }
- ]
- },
- "primaryType": "Mail",
- "domain": {
- "name": "Ether Mail",
- "version": "1",
- "chainId": 1,
- "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
- },
- "message": {
- "from": {
- "name": "Cow",
- "wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"
- },
- "to": {
- "name": "Bob",
- "wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"
- },
- "contents": "Hello, Bob!"
- }
- }
- `
- var mismatchTypedData TypedData
- err := json.Unmarshal([]byte(jsonTypedData), &mismatchTypedData)
- if err != nil {
- t.Fatalf("unmarshalling failed '%v'", err)
- }
- _, err = mismatchTypedData.HashStruct(mismatchTypedData.PrimaryType, mismatchTypedData.Message)
- if err.Error() != "provided data 'Hello, Bob!' doesn't match type 'Person'" {
- t.Errorf("Expected `provided data 'Hello, Bob!' doesn't match type 'Person'`, got '%v'", err)
- }
- mismatchTypedData.Types["Mail"][2].Type = "Blahonga"
- _, err = mismatchTypedData.HashStruct(mismatchTypedData.PrimaryType, mismatchTypedData.Message)
- if err == nil || err.Error() != "reference type 'Blahonga' is undefined" {
- t.Fatalf("Expected `reference type 'Blahonga' is undefined`, got '%v'", err)
- }
- }
- func TestTypeOverflow(t *testing.T) {
- // Verifies data that doesn't fit into it:
- //{
- // "test": 65536 <-- test defined as uint8
- //}
- var overflowTypedData TypedData
- err := json.Unmarshal([]byte(jsonTypedData), &overflowTypedData)
- if err != nil {
- t.Fatalf("unmarshalling failed '%v'", err)
- }
- // Set test to something outside uint8
- (overflowTypedData.Message["from"]).(map[string]interface{})["test"] = big.NewInt(65536)
- _, err = overflowTypedData.HashStruct(overflowTypedData.PrimaryType, overflowTypedData.Message)
- if err == nil || err.Error() != "integer larger than 'uint8'" {
- t.Fatalf("Expected `integer larger than 'uint8'`, got '%v'", err)
- }
- (overflowTypedData.Message["from"]).(map[string]interface{})["test"] = big.NewInt(3)
- (overflowTypedData.Message["to"]).(map[string]interface{})["test"] = big.NewInt(4)
- _, err = overflowTypedData.HashStruct(overflowTypedData.PrimaryType, overflowTypedData.Message)
- if err != nil {
- t.Fatalf("Expected no err, got '%v'", err)
- }
- }
- func TestArray(t *testing.T) {
- // Makes sure that arrays work fine
- //{
- // "type": "address[]"
- //},
- //{
- // "type": "string[]"
- //},
- //{
- // "type": "uint16[]",
- //}
- jsonTypedData := `
- {
- "types": {
- "EIP712Domain": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "version",
- "type": "string"
- },
- {
- "name": "chainId",
- "type": "uint256"
- },
- {
- "name": "verifyingContract",
- "type": "address"
- }
- ],
- "Foo": [
- {
- "name": "bar",
- "type": "address[]"
- }
- ]
- },
- "primaryType": "Foo",
- "domain": {
- "name": "Lorem",
- "version": "1",
- "chainId": 1,
- "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
- },
- "message": {
- "bar": [
- "0x0000000000000000000000000000000000000001",
- "0x0000000000000000000000000000000000000002",
- "0x0000000000000000000000000000000000000003"
- ]
- }
- }
- `
- var arrayTypedData TypedData
- err := json.Unmarshal([]byte(jsonTypedData), &arrayTypedData)
- if err != nil {
- t.Fatalf("unmarshalling failed '%v'", err)
- }
- _, err = arrayTypedData.HashStruct(arrayTypedData.PrimaryType, arrayTypedData.Message)
- if err != nil {
- t.Fatalf("Expected no err, got '%v'", err)
- }
- // Change array to string
- arrayTypedData.Types["Foo"][0].Type = "string[]"
- arrayTypedData.Message["bar"] = []interface{}{
- "lorem",
- "ipsum",
- "dolores",
- }
- _, err = arrayTypedData.HashStruct(arrayTypedData.PrimaryType, arrayTypedData.Message)
- if err != nil {
- t.Fatalf("Expected no err, got '%v'", err)
- }
- // Change array to uint
- arrayTypedData.Types["Foo"][0].Type = "uint[]"
- arrayTypedData.Message["bar"] = []interface{}{
- big.NewInt(1955),
- big.NewInt(108),
- big.NewInt(44010),
- }
- _, err = arrayTypedData.HashStruct(arrayTypedData.PrimaryType, arrayTypedData.Message)
- if err != nil {
- t.Fatalf("Expected no err, got '%v'", err)
- }
- // Should not work with fixed-size arrays
- arrayTypedData.Types["Foo"][0].Type = "uint[3]"
- _, err = arrayTypedData.HashStruct(arrayTypedData.PrimaryType, arrayTypedData.Message)
- if err == nil || err.Error() != "unknown type 'uint[3]'" {
- t.Fatalf("Expected `unknown type 'uint[3]'`, got '%v'", err)
- }
- }
- func TestCustomTypeAsArray(t *testing.T) {
- var jsonTypedData = `
- {
- "types": {
- "EIP712Domain": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "version",
- "type": "string"
- },
- {
- "name": "chainId",
- "type": "uint256"
- },
- {
- "name": "verifyingContract",
- "type": "address"
- }
- ],
- "Person": [
- {
- "name": "name",
- "type": "string"
- },
- {
- "name": "wallet",
- "type": "address"
- }
- ],
- "Person[]": [
- {
- "name": "baz",
- "type": "string"
- }
- ],
- "Mail": [
- {
- "name": "from",
- "type": "Person"
- },
- {
- "name": "to",
- "type": "Person[]"
- },
- {
- "name": "contents",
- "type": "string"
- }
- ]
- },
- "primaryType": "Mail",
- "domain": {
- "name": "Ether Mail",
- "version": "1",
- "chainId": 1,
- "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
- },
- "message": {
- "from": {
- "name": "Cow",
- "wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"
- },
- "to": {"baz": "foo"},
- "contents": "Hello, Bob!"
- }
- }
- `
- var malformedTypedData TypedData
- err := json.Unmarshal([]byte(jsonTypedData), &malformedTypedData)
- if err != nil {
- t.Fatalf("unmarshalling failed '%v'", err)
- }
- _, err = malformedTypedData.HashStruct("EIP712Domain", malformedTypedData.Domain.Map())
- if err != nil {
- t.Errorf("Expected no error, got '%v'", err)
- }
- }
- func TestFormatter(t *testing.T) {
- var d TypedData
- err := json.Unmarshal([]byte(jsonTypedData), &d)
- if err != nil {
- t.Fatalf("unmarshalling failed '%v'", err)
- }
- formatted := d.Format()
- for _, item := range formatted {
- fmt.Printf("'%v'\n", item.Pprint(0))
- }
- j, _ := json.Marshal(formatted)
- fmt.Printf("'%v'\n", string(j))
- }
|