ipld-eth-server/pkg/transformers/integration_tests/drip_drip.go

91 lines
3.0 KiB
Go
Raw Normal View History

2019-01-24 20:41:30 +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-10-17 21:33:23 +00:00
package integration_tests
import (
"github.com/ethereum/go-ethereum/common"
2018-10-17 21:33:23 +00:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/vulcanize/vulcanizedb/pkg/core"
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
2018-10-26 18:31:40 +00:00
"github.com/vulcanize/vulcanizedb/pkg/transformers/factories"
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared"
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data"
2018-10-17 21:33:23 +00:00
"github.com/vulcanize/vulcanizedb/pkg/transformers/drip_drip"
"github.com/vulcanize/vulcanizedb/test_config"
)
var _ = Describe("DripDrip Transformer", func() {
var (
db *postgres.DB
blockChain core.BlockChain
config shared.TransformerConfig
)
2018-10-17 21:33:23 +00:00
BeforeEach(func() {
2018-10-17 21:33:23 +00:00
rpcClient, ethClient, err := getClients(ipc)
Expect(err).NotTo(HaveOccurred())
blockChain, err = getBlockChain(rpcClient, ethClient)
2018-10-17 21:33:23 +00:00
Expect(err).NotTo(HaveOccurred())
db = test_config.NewTestDB(blockChain.Node())
2018-10-17 21:33:23 +00:00
test_config.CleanTestDB(db)
config = shared.TransformerConfig{
ContractAddresses: []string{test_data.KovanDripContractAddress},
ContractAbi: test_data.KovanDripABI,
Topic: test_data.KovanDripDripSignature,
StartingBlockNumber: 0,
EndingBlockNumber: -1,
}
})
It("transforms DripDrip log events", func() {
blockNumber := int64(8934775)
config.StartingBlockNumber = blockNumber
config.EndingBlockNumber = blockNumber
2018-10-17 21:33:23 +00:00
header, err := persistHeader(db, blockNumber, blockChain)
2018-10-17 21:33:23 +00:00
Expect(err).NotTo(HaveOccurred())
2018-10-26 18:31:40 +00:00
initializer := factories.LogNoteTransformer{
Config: config,
2018-10-26 18:31:40 +00:00
Converter: &drip_drip.DripDripConverter{},
Repository: &drip_drip.DripDripRepository{},
}
transformer := initializer.NewLogNoteTransformer(db)
fetcher := shared.NewFetcher(blockChain)
logs, err := fetcher.FetchLogs(
shared.HexStringsToAddresses(config.ContractAddresses),
[]common.Hash{common.HexToHash(config.Topic)},
header)
Expect(err).NotTo(HaveOccurred())
2018-10-26 18:31:40 +00:00
err = transformer.Execute(logs, header)
2018-10-17 21:33:23 +00:00
Expect(err).NotTo(HaveOccurred())
var dbResults []drip_drip.DripDripModel
err = db.Select(&dbResults, `SELECT ilk from maker.drip_drip`)
Expect(err).NotTo(HaveOccurred())
Expect(len(dbResults)).To(Equal(1))
dbResult := dbResults[0]
Expect(dbResult.Ilk).To(Equal("4554480000000000000000000000000000000000000000000000000000000000"))
2018-10-17 21:33:23 +00:00
})
})