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-08-16 21:36:35 +00:00
|
|
|
|
|
|
|
package tend_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
2018-09-11 19:01:45 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2018-09-20 21:42:31 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2018-08-16 21:36:35 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/tend"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Tend TendConverter", func() {
|
|
|
|
var converter tend.TendConverter
|
|
|
|
|
|
|
|
BeforeEach(func() {
|
2018-10-12 14:17:49 +00:00
|
|
|
converter = tend.TendConverter{}
|
2018-08-16 21:36:35 +00:00
|
|
|
})
|
|
|
|
|
2018-09-27 15:12:29 +00:00
|
|
|
Describe("ToModels", func() {
|
2018-09-04 20:50:29 +00:00
|
|
|
It("converts an eth log to a db model", func() {
|
2018-09-27 15:12:29 +00:00
|
|
|
models, err := converter.ToModels([]types.Log{test_data.TendLogNote})
|
2018-09-11 19:01:45 +00:00
|
|
|
|
2018-08-16 21:36:35 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-09-20 21:42:31 +00:00
|
|
|
Expect(len(models)).To(Equal(1))
|
|
|
|
Expect(models[0]).To(Equal(test_data.TendModel))
|
2018-08-16 21:36:35 +00:00
|
|
|
})
|
2018-09-11 19:01:45 +00:00
|
|
|
|
|
|
|
It("returns an error if the log data is empty", func() {
|
|
|
|
emptyDataLog := test_data.TendLogNote
|
|
|
|
emptyDataLog.Data = []byte{}
|
2018-09-27 15:12:29 +00:00
|
|
|
_, err := converter.ToModels([]types.Log{emptyDataLog})
|
2018-09-11 19:01:45 +00:00
|
|
|
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
Expect(err).To(MatchError("tend log note data is empty"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("returns an error if the expected amount of topics aren't in the log", func() {
|
|
|
|
invalidLog := test_data.TendLogNote
|
|
|
|
invalidLog.Topics = []common.Hash{}
|
2018-09-27 15:12:29 +00:00
|
|
|
_, err := converter.ToModels([]types.Log{invalidLog})
|
2018-09-11 19:01:45 +00:00
|
|
|
|
|
|
|
Expect(err).To(MatchError("tend log does not contain expected topics"))
|
|
|
|
})
|
2018-08-16 21:36:35 +00:00
|
|
|
})
|
|
|
|
})
|