tests: unify testdata directory
This commit is contained in:
@@ -55,7 +55,7 @@ func TestParseNBits(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestBlockHeader(t *testing.T) {
|
func TestBlockHeader(t *testing.T) {
|
||||||
testBlocks, err := os.Open("testdata/blocks")
|
testBlocks, err := os.Open("../testdata/blocks")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestBlockParser(t *testing.T) {
|
func TestBlockParser(t *testing.T) {
|
||||||
testBlocks, err := os.Open("testdata/blocks")
|
testBlocks, err := os.Open("../testdata/blocks")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
@@ -54,7 +54,7 @@ func TestCompactBlocks(t *testing.T) {
|
|||||||
}
|
}
|
||||||
var compactTests []compactTest
|
var compactTests []compactTest
|
||||||
|
|
||||||
blockJSON, err := ioutil.ReadFile("testdata/compact_blocks.json")
|
blockJSON, err := ioutil.ReadFile("../testdata/compact_blocks.json")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ func TestSproutTransactionParser(t *testing.T) {
|
|||||||
// order as the test table above. If you update the test table without
|
// order as the test table above. If you update the test table without
|
||||||
// adding a line to the raw file, this test will panic due to index
|
// adding a line to the raw file, this test will panic due to index
|
||||||
// misalignment.
|
// misalignment.
|
||||||
testData, err := os.Open("testdata/zip143_raw_tx")
|
testData, err := os.Open("../testdata/zip143_raw_tx")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
@@ -658,7 +658,7 @@ var zip243tests = []txTestVector{
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestSaplingTransactionParser(t *testing.T) {
|
func TestSaplingTransactionParser(t *testing.T) {
|
||||||
testData, err := os.Open("testdata/zip243_raw_tx")
|
testData, err := os.Open("../testdata/zip243_raw_tx")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,16 +17,17 @@ import (
|
|||||||
"github.com/gtank/ctxd/rpc"
|
"github.com/gtank/ctxd/rpc"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestSqliteStorage(t *testing.T) {
|
type compactTest struct {
|
||||||
type compactTest struct {
|
BlockHeight int `json:"block"`
|
||||||
BlockHeight int `json:"block"`
|
BlockHash string `json:"hash"`
|
||||||
BlockHash string `json:"hash"`
|
Full string `json:"full"`
|
||||||
Full string `json:"full"`
|
Compact string `json:"compact"`
|
||||||
Compact string `json:"compact"`
|
}
|
||||||
}
|
|
||||||
var compactTests []compactTest
|
|
||||||
|
|
||||||
blockJSON, err := ioutil.ReadFile("testdata/compact_blocks.json")
|
var compactTests []compactTest
|
||||||
|
|
||||||
|
func TestSqliteStorage(t *testing.T) {
|
||||||
|
blockJSON, err := ioutil.ReadFile("../testdata/compact_blocks.json")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
@@ -35,11 +36,6 @@ func TestSqliteStorage(t *testing.T) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
conn, err := sql.Open("sqlite3", ":memory:")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
defer conn.Close()
|
defer conn.Close()
|
||||||
|
|
||||||
err = CreateTables(conn)
|
err = CreateTables(conn)
|
||||||
|
|||||||
38
storage/testdata/compact_blocks.json
vendored
38
storage/testdata/compact_blocks.json
vendored
File diff suppressed because one or more lines are too long
BIN
testdata/test.db
vendored
Normal file
BIN
testdata/test.db
vendored
Normal file
Binary file not shown.
Reference in New Issue
Block a user