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-04 21:26:39 +00:00
|
|
|
|
|
|
|
package contract_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/contract"
|
2018-11-07 21:50:43 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/helpers/test_helpers"
|
2018-11-04 21:26:39 +00:00
|
|
|
)
|
|
|
|
|
2018-11-07 21:50:43 +00:00
|
|
|
var _ = Describe("Contract", func() {
|
2018-11-04 21:26:39 +00:00
|
|
|
var err error
|
2018-11-07 21:50:43 +00:00
|
|
|
var info *contract.Contract
|
|
|
|
var wantedEvents = []string{"Transfer", "Approval"}
|
|
|
|
|
|
|
|
Describe("GenerateFilters", func() {
|
|
|
|
|
|
|
|
It("Generates filters from contract data", func() {
|
|
|
|
info = test_helpers.SetupTusdContract(wantedEvents, nil)
|
|
|
|
err = info.GenerateFilters()
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
val, ok := info.Filters["Transfer"]
|
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
Expect(val).To(Equal(test_helpers.ExpectedTransferFilter))
|
|
|
|
|
|
|
|
val, ok = info.Filters["Approval"]
|
|
|
|
Expect(ok).To(Equal(true))
|
|
|
|
Expect(val).To(Equal(test_helpers.ExpectedApprovalFilter))
|
|
|
|
|
|
|
|
val, ok = info.Filters["Mint"]
|
|
|
|
Expect(ok).To(Equal(false))
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Fails with an empty contract", func() {
|
|
|
|
info = &contract.Contract{}
|
|
|
|
err = info.GenerateFilters()
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("IsEventAddr", func() {
|
|
|
|
|
|
|
|
BeforeEach(func() {
|
|
|
|
info = &contract.Contract{}
|
|
|
|
info.MethodAddrs = map[string]bool{}
|
|
|
|
info.EventAddrs = map[string]bool{}
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Returns true if address is in event address filter list", func() {
|
|
|
|
info.EventAddrs["testAddress1"] = true
|
|
|
|
info.EventAddrs["testAddress2"] = true
|
|
|
|
|
|
|
|
is := info.IsEventAddr("testAddress1")
|
|
|
|
Expect(is).To(Equal(true))
|
|
|
|
is = info.IsEventAddr("testAddress2")
|
|
|
|
Expect(is).To(Equal(true))
|
|
|
|
|
|
|
|
info.MethodAddrs["testAddress3"] = true
|
|
|
|
is = info.IsEventAddr("testAddress3")
|
|
|
|
Expect(is).To(Equal(false))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Returns true if event address filter is empty (no filter)", func() {
|
|
|
|
is := info.IsEventAddr("testAddress1")
|
|
|
|
Expect(is).To(Equal(true))
|
|
|
|
is = info.IsEventAddr("testAddress2")
|
|
|
|
Expect(is).To(Equal(true))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Returns false if address is not in event address filter list", func() {
|
|
|
|
info.EventAddrs["testAddress1"] = true
|
|
|
|
info.EventAddrs["testAddress2"] = true
|
|
|
|
|
|
|
|
is := info.IsEventAddr("testAddress3")
|
|
|
|
Expect(is).To(Equal(false))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Returns false if event address filter is nil (block all)", func() {
|
|
|
|
info.EventAddrs = nil
|
|
|
|
|
|
|
|
is := info.IsEventAddr("testAddress1")
|
|
|
|
Expect(is).To(Equal(false))
|
|
|
|
is = info.IsEventAddr("testAddress2")
|
|
|
|
Expect(is).To(Equal(false))
|
|
|
|
})
|
|
|
|
})
|
2018-11-04 21:26:39 +00:00
|
|
|
|
2018-11-07 21:50:43 +00:00
|
|
|
Describe("IsMethodAddr", func() {
|
|
|
|
BeforeEach(func() {
|
|
|
|
info = &contract.Contract{}
|
|
|
|
info.MethodAddrs = map[string]bool{}
|
|
|
|
info.EventAddrs = map[string]bool{}
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Returns true if address is in method address filter list", func() {
|
|
|
|
info.MethodAddrs["testAddress1"] = true
|
|
|
|
info.MethodAddrs["testAddress2"] = true
|
|
|
|
|
|
|
|
is := info.IsMethodAddr("testAddress1")
|
|
|
|
Expect(is).To(Equal(true))
|
|
|
|
is = info.IsMethodAddr("testAddress2")
|
|
|
|
Expect(is).To(Equal(true))
|
|
|
|
|
|
|
|
info.EventAddrs["testAddress3"] = true
|
|
|
|
is = info.IsMethodAddr("testAddress3")
|
|
|
|
Expect(is).To(Equal(false))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Returns true if method address filter list is empty (no filter)", func() {
|
|
|
|
is := info.IsMethodAddr("testAddress1")
|
|
|
|
Expect(is).To(Equal(true))
|
|
|
|
is = info.IsMethodAddr("testAddress2")
|
|
|
|
Expect(is).To(Equal(true))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Returns false if address is not in method address filter list", func() {
|
|
|
|
info.MethodAddrs["testAddress1"] = true
|
|
|
|
info.MethodAddrs["testAddress2"] = true
|
|
|
|
|
|
|
|
is := info.IsMethodAddr("testAddress3")
|
|
|
|
Expect(is).To(Equal(false))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Returns false if method address filter list is nil (block all)", func() {
|
|
|
|
info.MethodAddrs = nil
|
|
|
|
|
|
|
|
is := info.IsMethodAddr("testAddress1")
|
|
|
|
Expect(is).To(Equal(false))
|
|
|
|
is = info.IsMethodAddr("testAddress2")
|
|
|
|
Expect(is).To(Equal(false))
|
|
|
|
})
|
2018-11-04 21:26:39 +00:00
|
|
|
})
|
|
|
|
|
2018-11-07 21:50:43 +00:00
|
|
|
Describe("PassesEventFilter", func() {
|
|
|
|
var mapping map[string]string
|
|
|
|
BeforeEach(func() {
|
|
|
|
info = &contract.Contract{}
|
|
|
|
info.EventAddrs = map[string]bool{}
|
|
|
|
mapping = map[string]string{}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Return true if event log name-value mapping has filtered for address as a value", func() {
|
|
|
|
info.EventAddrs["testAddress1"] = true
|
|
|
|
info.EventAddrs["testAddress2"] = true
|
|
|
|
|
|
|
|
mapping["testInputName1"] = "testAddress1"
|
|
|
|
mapping["testInputName2"] = "testAddress2"
|
|
|
|
mapping["testInputName3"] = "testAddress3"
|
|
|
|
|
|
|
|
pass := info.PassesEventFilter(mapping)
|
|
|
|
Expect(pass).To(Equal(true))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Return true if event address filter list is empty (no filter)", func() {
|
|
|
|
mapping["testInputName1"] = "testAddress1"
|
|
|
|
mapping["testInputName2"] = "testAddress2"
|
|
|
|
mapping["testInputName3"] = "testAddress3"
|
|
|
|
|
|
|
|
pass := info.PassesEventFilter(mapping)
|
|
|
|
Expect(pass).To(Equal(true))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Return false if event log name-value mapping does not have filtered for address as a value", func() {
|
|
|
|
info.EventAddrs["testAddress1"] = true
|
|
|
|
info.EventAddrs["testAddress2"] = true
|
|
|
|
|
|
|
|
mapping["testInputName3"] = "testAddress3"
|
|
|
|
|
|
|
|
pass := info.PassesEventFilter(mapping)
|
|
|
|
Expect(pass).To(Equal(false))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Return false if event address filter list is nil (block all)", func() {
|
|
|
|
info.EventAddrs = nil
|
|
|
|
|
|
|
|
mapping["testInputName1"] = "testAddress1"
|
|
|
|
mapping["testInputName2"] = "testAddress2"
|
|
|
|
mapping["testInputName3"] = "testAddress3"
|
|
|
|
|
|
|
|
pass := info.PassesEventFilter(mapping)
|
|
|
|
Expect(pass).To(Equal(false))
|
|
|
|
})
|
2018-11-04 21:26:39 +00:00
|
|
|
})
|
|
|
|
|
2018-11-07 21:50:43 +00:00
|
|
|
Describe("AddTokenHolderAddress", func() {
|
|
|
|
BeforeEach(func() {
|
|
|
|
info = &contract.Contract{}
|
|
|
|
info.EventAddrs = map[string]bool{}
|
|
|
|
info.MethodAddrs = map[string]bool{}
|
|
|
|
info.TknHolderAddrs = map[string]bool{}
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Adds address to list if it is on the method filter address list", func() {
|
|
|
|
info.MethodAddrs["testAddress2"] = true
|
|
|
|
info.AddTokenHolderAddress("testAddress2")
|
|
|
|
b := info.TknHolderAddrs["testAddress2"]
|
|
|
|
Expect(b).To(Equal(true))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Adds address to list if method filter is empty", func() {
|
|
|
|
info.AddTokenHolderAddress("testAddress2")
|
|
|
|
b := info.TknHolderAddrs["testAddress2"]
|
|
|
|
Expect(b).To(Equal(true))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Does not add address to list if both filters are closed (nil)", func() {
|
|
|
|
info.EventAddrs = nil // close both
|
|
|
|
info.MethodAddrs = nil
|
|
|
|
info.AddTokenHolderAddress("testAddress1")
|
|
|
|
b := info.TknHolderAddrs["testAddress1"]
|
|
|
|
Expect(b).To(Equal(false))
|
|
|
|
})
|
2018-11-04 21:26:39 +00:00
|
|
|
})
|
|
|
|
})
|