2019-08-28 19:43:27 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2019 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/>.
|
|
|
|
|
2020-01-17 23:16:01 +00:00
|
|
|
package eth_test
|
2019-08-28 19:43:27 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
2020-01-17 23:16:01 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/super_node/shared"
|
2019-08-28 19:43:27 +00:00
|
|
|
|
2020-01-17 23:16:01 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/super_node/eth"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/super_node/eth/mocks"
|
2019-08-28 19:43:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-01-17 23:16:01 +00:00
|
|
|
resolver *eth.IPLDResolver
|
2019-08-28 19:43:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Resolver", func() {
|
|
|
|
Describe("ResolveIPLDs", func() {
|
2019-08-28 22:07:36 +00:00
|
|
|
BeforeEach(func() {
|
2020-01-17 23:16:01 +00:00
|
|
|
resolver = eth.NewIPLDResolver()
|
2019-08-28 22:07:36 +00:00
|
|
|
})
|
|
|
|
It("Resolves IPLD data to their correct geth data types and packages them to send to requesting transformers", func() {
|
2020-01-17 23:16:01 +00:00
|
|
|
payload, err := resolver.Resolve(mocks.MockIPLDWrapper)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2020-01-31 18:03:37 +00:00
|
|
|
superNodePayload, ok := payload.(eth.StreamResponse)
|
2020-01-17 23:16:01 +00:00
|
|
|
Expect(ok).To(BeTrue())
|
|
|
|
Expect(superNodePayload.BlockNumber.Int64()).To(Equal(mocks.MockSeedNodePayload.BlockNumber.Int64()))
|
|
|
|
Expect(superNodePayload.HeadersRlp).To(Equal(mocks.MockSeedNodePayload.HeadersRlp))
|
|
|
|
Expect(superNodePayload.UnclesRlp).To(Equal(mocks.MockSeedNodePayload.UnclesRlp))
|
2019-10-02 14:10:37 +00:00
|
|
|
Expect(len(superNodePayload.TransactionsRlp)).To(Equal(2))
|
2020-01-17 23:16:01 +00:00
|
|
|
Expect(shared.ListContainsBytes(superNodePayload.TransactionsRlp, mocks.MockTransactions.GetRlp(0))).To(BeTrue())
|
|
|
|
Expect(shared.ListContainsBytes(superNodePayload.TransactionsRlp, mocks.MockTransactions.GetRlp(1))).To(BeTrue())
|
2019-10-02 14:10:37 +00:00
|
|
|
Expect(len(superNodePayload.ReceiptsRlp)).To(Equal(2))
|
2020-01-17 23:16:01 +00:00
|
|
|
Expect(shared.ListContainsBytes(superNodePayload.ReceiptsRlp, mocks.MockReceipts.GetRlp(0))).To(BeTrue())
|
|
|
|
Expect(shared.ListContainsBytes(superNodePayload.ReceiptsRlp, mocks.MockReceipts.GetRlp(1))).To(BeTrue())
|
2019-10-02 14:10:37 +00:00
|
|
|
Expect(len(superNodePayload.StateNodesRlp)).To(Equal(2))
|
2020-01-17 23:16:01 +00:00
|
|
|
Expect(superNodePayload.StorageNodesRlp).To(Equal(mocks.MockSeedNodePayload.StorageNodesRlp))
|
2019-08-28 19:43:27 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|