417b18ec6a
towards generic method polling and reposito;y; config settings to filterevents/methods by account address; refactoring some stuff out of repo and into converter; remove fetcher and instead call blockchain's FetchContractData directly; finishing tests
95 lines
2.5 KiB
Go
95 lines
2.5 KiB
Go
// 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/>.
|
|
|
|
package test_config
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/config"
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
|
)
|
|
|
|
var TestConfig *viper.Viper
|
|
var DBConfig config.Database
|
|
var Infura *viper.Viper
|
|
var InfuraClient config.Client
|
|
var ABIFilePath string
|
|
|
|
func init() {
|
|
setTestConfig()
|
|
setInfuraConfig()
|
|
setABIPath()
|
|
}
|
|
|
|
func setTestConfig() {
|
|
TestConfig = viper.New()
|
|
TestConfig.SetConfigName("private")
|
|
TestConfig.AddConfigPath("$GOPATH/src/github.com/vulcanize/vulcanizedb/environments/")
|
|
err := TestConfig.ReadInConfig()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
hn := TestConfig.GetString("database.hostname")
|
|
port := TestConfig.GetInt("database.port")
|
|
name := TestConfig.GetString("database.name")
|
|
DBConfig = config.Database{
|
|
Hostname: hn,
|
|
Name: name,
|
|
Port: port,
|
|
}
|
|
}
|
|
|
|
func setInfuraConfig() {
|
|
Infura = viper.New()
|
|
Infura.SetConfigName("infura")
|
|
Infura.AddConfigPath("$GOPATH/src/github.com/vulcanize/vulcanizedb/environments/")
|
|
err := Infura.ReadInConfig()
|
|
ipc := Infura.GetString("client.ipcpath")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
InfuraClient = config.Client{
|
|
IPCPath: ipc,
|
|
}
|
|
}
|
|
|
|
func setABIPath() {
|
|
gp := os.Getenv("GOPATH")
|
|
ABIFilePath = gp + "/src/github.com/vulcanize/vulcanizedb/pkg/geth/testing/"
|
|
}
|
|
|
|
func NewTestDB(node core.Node) *postgres.DB {
|
|
db, _ := postgres.NewDB(DBConfig, node)
|
|
db.MustExec("DELETE FROM blocks")
|
|
db.MustExec("DELETE FROM headers")
|
|
db.MustExec("DELETE FROM log_filters")
|
|
db.MustExec("DELETE FROM logs")
|
|
db.MustExec("DELETE FROM receipts")
|
|
db.MustExec("DELETE FROM transactions")
|
|
db.MustExec("DELETE FROM watched_contracts")
|
|
return db
|
|
}
|
|
|
|
func NewTestDBWithoutDeletingRecords(node core.Node) *postgres.DB {
|
|
db, _ := postgres.NewDB(DBConfig, node)
|
|
return db
|
|
}
|