2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2018 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-11-03 19:02:31 +00:00
|
|
|
|
|
|
|
package converter_test
|
2018-11-24 04:26:07 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/light/converter"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/shared/contract"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/shared/helpers"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/shared/helpers/test_helpers"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/shared/helpers/test_helpers/mocks"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Converter", func() {
|
|
|
|
var con *contract.Contract
|
2018-12-14 17:52:02 +00:00
|
|
|
var tusdWantedEvents = []string{"Transfer", "Mint"}
|
|
|
|
var ensWantedEvents = []string{"NewOwner"}
|
2018-11-24 04:26:07 +00:00
|
|
|
var err error
|
|
|
|
|
|
|
|
Describe("Update", func() {
|
|
|
|
It("Updates contract info held by the converter", func() {
|
2018-12-14 17:52:02 +00:00
|
|
|
con = test_helpers.SetupTusdContract(tusdWantedEvents, []string{})
|
2018-11-24 04:26:07 +00:00
|
|
|
c := converter.NewConverter(con)
|
|
|
|
Expect(c.ContractInfo).To(Equal(con))
|
|
|
|
|
|
|
|
info := test_helpers.SetupTusdContract([]string{}, []string{})
|
|
|
|
c.Update(info)
|
|
|
|
Expect(c.ContractInfo).To(Equal(info))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("Convert", func() {
|
|
|
|
It("Converts a watched event log to mapping of event input names to values", func() {
|
2018-12-14 17:52:02 +00:00
|
|
|
con = test_helpers.SetupTusdContract(tusdWantedEvents, []string{})
|
2018-11-24 04:26:07 +00:00
|
|
|
_, ok := con.Events["Approval"]
|
|
|
|
Expect(ok).To(Equal(false))
|
|
|
|
|
|
|
|
event, ok := con.Events["Transfer"]
|
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
|
|
|
|
c := converter.NewConverter(con)
|
|
|
|
logs, err := c.Convert([]types.Log{mocks.MockTransferLog1, mocks.MockTransferLog2}, event, 232)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(len(logs)).To(Equal(2))
|
|
|
|
|
|
|
|
sender1 := common.HexToAddress("0x9dd48110dcc444fdc242510c09bbbbe21a5975cac061d82f7b843bce061ba391")
|
|
|
|
sender2 := common.HexToAddress("0x000000000000000000000000000000000000000000000000000000000000af21")
|
|
|
|
value := helpers.BigFromString("1097077688018008265106216665536940668749033598146")
|
|
|
|
|
|
|
|
Expect(logs[0].Values["to"]).To(Equal(sender1.String()))
|
|
|
|
Expect(logs[0].Values["from"]).To(Equal(sender2.String()))
|
|
|
|
Expect(logs[0].Values["value"]).To(Equal(value.String()))
|
|
|
|
Expect(logs[0].Id).To(Equal(int64(232)))
|
|
|
|
Expect(logs[1].Values["to"]).To(Equal(sender2.String()))
|
|
|
|
Expect(logs[1].Values["from"]).To(Equal(sender1.String()))
|
|
|
|
Expect(logs[1].Values["value"]).To(Equal(value.String()))
|
|
|
|
Expect(logs[1].Id).To(Equal(int64(232)))
|
|
|
|
})
|
|
|
|
|
2018-12-14 17:52:02 +00:00
|
|
|
It("Keeps track of addresses it sees if they will be used for method polling", func() {
|
|
|
|
con = test_helpers.SetupTusdContract(tusdWantedEvents, []string{"balanceOf"})
|
2018-11-24 04:26:07 +00:00
|
|
|
event, ok := con.Events["Transfer"]
|
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
|
|
|
|
c := converter.NewConverter(con)
|
|
|
|
_, err := c.Convert([]types.Log{mocks.MockTransferLog1, mocks.MockTransferLog2}, event, 232)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
2018-12-07 15:38:46 +00:00
|
|
|
b, ok := con.EmittedAddrs[common.HexToAddress("0x000000000000000000000000000000000000Af21")]
|
2018-11-24 04:26:07 +00:00
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
Expect(b).To(Equal(true))
|
|
|
|
|
2018-12-07 15:38:46 +00:00
|
|
|
b, ok = con.EmittedAddrs[common.HexToAddress("0x09BbBBE21a5975cAc061D82f7b843bCE061BA391")]
|
2018-11-24 04:26:07 +00:00
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
Expect(b).To(Equal(true))
|
|
|
|
|
2018-12-07 15:38:46 +00:00
|
|
|
_, ok = con.EmittedAddrs[common.HexToAddress("0x")]
|
2018-11-24 04:26:07 +00:00
|
|
|
Expect(ok).To(Equal(false))
|
|
|
|
|
2018-12-07 15:38:46 +00:00
|
|
|
_, ok = con.EmittedAddrs[""]
|
2018-11-24 04:26:07 +00:00
|
|
|
Expect(ok).To(Equal(false))
|
|
|
|
|
2018-12-07 15:38:46 +00:00
|
|
|
_, ok = con.EmittedAddrs[common.HexToAddress("0x09THISE21a5IS5cFAKE1D82fAND43bCE06MADEUP")]
|
2018-11-24 04:26:07 +00:00
|
|
|
Expect(ok).To(Equal(false))
|
2018-12-14 17:52:02 +00:00
|
|
|
|
|
|
|
_, ok = con.EmittedHashes[common.HexToHash("0x000000000000000000000000c02aaa39b223helloa0e5c4f27ead9083c752553")]
|
|
|
|
Expect(ok).To(Equal(false))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Keeps track of hashes it sees if they will be used for method polling", func() {
|
|
|
|
con = test_helpers.SetupENSContract(ensWantedEvents, []string{"owner"})
|
|
|
|
event, ok := con.Events["NewOwner"]
|
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
|
|
|
|
c := converter.NewConverter(con)
|
|
|
|
_, err := c.Convert([]types.Log{mocks.MockNewOwnerLog1, mocks.MockNewOwnerLog2}, event, 232)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(len(con.EmittedHashes)).To(Equal(3))
|
|
|
|
|
|
|
|
b, ok := con.EmittedHashes[common.HexToHash("0x000000000000000000000000c02aaa39b223helloa0e5c4f27ead9083c752553")]
|
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
Expect(b).To(Equal(true))
|
|
|
|
|
|
|
|
b, ok = con.EmittedHashes[common.HexToHash("0x9dd48110dcc444fdc242510c09bbbbe21a5975cac061d82f7b843bce061ba391")]
|
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
Expect(b).To(Equal(true))
|
|
|
|
|
|
|
|
b, ok = con.EmittedHashes[common.HexToHash("0x9dd48110dcc444fdc242510c09bbbbe21a5975cac061d82f7b843bce061ba400")]
|
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
Expect(b).To(Equal(true))
|
|
|
|
|
|
|
|
_, ok = con.EmittedHashes[common.HexToHash("0x9dd48thiscc444isc242510c0made03upa5975cac061dhashb843bce061ba400")]
|
|
|
|
Expect(ok).To(Equal(false))
|
|
|
|
|
|
|
|
_, ok = con.EmittedHashes[common.HexToAddress("0x")]
|
|
|
|
Expect(ok).To(Equal(false))
|
|
|
|
|
|
|
|
_, ok = con.EmittedHashes[""]
|
|
|
|
Expect(ok).To(Equal(false))
|
|
|
|
|
|
|
|
// Does not keep track of emitted addresses if the methods provided will not use them
|
|
|
|
_, ok = con.EmittedAddrs[common.HexToAddress("0x000000000000000000000000000000000000Af21")]
|
|
|
|
Expect(ok).To(Equal(false))
|
2018-11-24 04:26:07 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
It("Fails with an empty contract", func() {
|
|
|
|
event := con.Events["Transfer"]
|
|
|
|
c := converter.NewConverter(&contract.Contract{})
|
|
|
|
_, err = c.Convert([]types.Log{mocks.MockTransferLog1}, event, 232)
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|