2017-10-25 15:57:59 +00:00
|
|
|
package core_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/8thlight/vulcanizedb/core"
|
2017-10-27 20:29:55 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2017-10-25 15:57:59 +00:00
|
|
|
"github.com/jmoiron/sqlx"
|
|
|
|
_ "github.com/lib/pq"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
host = "localhost"
|
|
|
|
port = 5432
|
|
|
|
user = "postgres"
|
|
|
|
password = "postgres"
|
|
|
|
dbname = "vulcanize"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Saving blocks to the database", func() {
|
|
|
|
|
|
|
|
var db *sqlx.DB
|
|
|
|
var err error
|
2017-10-27 20:29:55 +00:00
|
|
|
var gethTransaction *types.Transaction
|
2017-10-25 15:57:59 +00:00
|
|
|
|
|
|
|
BeforeEach(func() {
|
2017-10-27 20:29:55 +00:00
|
|
|
|
|
|
|
blockName := []byte("0x28f9a8d33109c87bda4a9ea890792421c710fe1c")
|
|
|
|
addr := common.BytesToAddress(blockName)
|
|
|
|
nonce := uint64(18848)
|
|
|
|
amt := big.NewInt(0)
|
|
|
|
gasLimit := big.NewInt(0)
|
|
|
|
gasPrice := big.NewInt(0)
|
|
|
|
data := []byte{}
|
|
|
|
gethTransaction = types.NewTransaction(nonce, addr, amt, gasLimit, gasPrice, data)
|
|
|
|
|
2017-10-25 15:57:59 +00:00
|
|
|
pgConfig := fmt.Sprintf(
|
|
|
|
"host=%s port=%d user=%s password=%s dbname=%s sslmode=disable",
|
|
|
|
host, port, user, password, dbname)
|
|
|
|
db, err = sqlx.Connect("postgres", pgConfig)
|
|
|
|
db.MustExec("DELETE FROM blocks")
|
|
|
|
})
|
|
|
|
|
|
|
|
It("implements the observer interface", func() {
|
|
|
|
var observer core.BlockchainObserver = core.BlockchainDBObserver{Db: db}
|
|
|
|
Expect(observer).NotTo(BeNil())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("connects to the database", func() {
|
|
|
|
Expect(err).Should(BeNil())
|
|
|
|
Expect(db).ShouldNot(BeNil())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("starts with no blocks", func() {
|
|
|
|
var count int
|
|
|
|
queryError := db.Get(&count, "SELECT COUNT(*) FROM blocks")
|
|
|
|
Expect(queryError).Should(BeNil())
|
|
|
|
Expect(count).Should(Equal(0))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("inserts a block", func() {
|
2017-10-27 20:29:55 +00:00
|
|
|
// setup a block in memory
|
2017-10-25 22:24:38 +00:00
|
|
|
blockNumber := big.NewInt(1)
|
|
|
|
gasLimit := big.NewInt(1000000)
|
|
|
|
gasUsed := big.NewInt(10)
|
|
|
|
blockTime := big.NewInt(1508981640)
|
|
|
|
block := core.Block{Number: blockNumber, GasLimit: gasLimit, GasUsed: gasUsed, Time: blockTime}
|
2017-10-25 15:57:59 +00:00
|
|
|
|
2017-10-27 20:29:55 +00:00
|
|
|
// save the block to the database
|
2017-10-25 15:57:59 +00:00
|
|
|
observer := core.BlockchainDBObserver{Db: db}
|
|
|
|
observer.NotifyBlockAdded(block)
|
|
|
|
|
2017-10-27 20:29:55 +00:00
|
|
|
// find the saved block
|
|
|
|
rows, err := db.Query("SELECT block_number, block_gaslimit, block_gasused, block_time FROM blocks")
|
2017-10-25 15:57:59 +00:00
|
|
|
Expect(err).To(BeNil())
|
2017-10-27 20:29:55 +00:00
|
|
|
var savedBlocks []core.Block
|
2017-10-25 15:57:59 +00:00
|
|
|
for rows.Next() {
|
2017-10-27 20:29:55 +00:00
|
|
|
var blockNumber int64
|
|
|
|
var blockTime float64
|
|
|
|
var gasLimit float64
|
|
|
|
var gasUsed float64
|
|
|
|
rows.Scan(&blockNumber, &gasLimit, &gasUsed, &blockTime)
|
|
|
|
savedBlock := core.Block{
|
|
|
|
GasUsed: big.NewInt(int64(gasUsed)),
|
|
|
|
GasLimit: big.NewInt(int64(gasLimit)),
|
|
|
|
Number: big.NewInt(blockNumber),
|
|
|
|
Time: big.NewInt(int64(blockTime)),
|
|
|
|
}
|
2017-10-25 15:57:59 +00:00
|
|
|
savedBlocks = append(savedBlocks, savedBlock)
|
|
|
|
}
|
2017-10-27 20:29:55 +00:00
|
|
|
// assert against the attributes
|
2017-10-25 15:57:59 +00:00
|
|
|
Expect(len(savedBlocks)).To(Equal(1))
|
2017-10-27 20:29:55 +00:00
|
|
|
Expect(savedBlocks[0].Number.Int64()).To(Equal(blockNumber.Int64()))
|
|
|
|
Expect(savedBlocks[0].GasLimit.Int64()).To(Equal(gasLimit.Int64()))
|
|
|
|
Expect(savedBlocks[0].GasUsed.Int64()).To(Equal(gasUsed.Int64()))
|
|
|
|
Expect(savedBlocks[0].Time).To(Equal(blockTime))
|
2017-10-25 15:57:59 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
})
|