Skip to content

Commit

Permalink
Add "it works" test for bitcoin-tx
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Garzik committed Aug 19, 2014
1 parent dd28197 commit d789386
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ src/qt/test/moc*.cpp
*.bak
*.rej
*.orig
*.pyc
*.o
*.o-*
*.patch
Expand Down
9 changes: 8 additions & 1 deletion src/Makefile.test.include
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
TESTS += test/test_bitcoin
TESTS += test/test_bitcoin test/bitcoin-util-test.py
bin_PROGRAMS += test/test_bitcoin
TEST_SRCDIR = test
TEST_BINARY=test/test_bitcoin$(EXEEXT)


EXTRA_DIST += \
test/bctest.py \
test/bitcoin-util-test.py \
test/data/bitcoin-util-test.json \
test/data/blanktx.hex

JSON_TEST_FILES = \
test/data/script_valid.json \
test/data/base58_keys_valid.json \
Expand Down
35 changes: 35 additions & 0 deletions src/test/bctest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright 2014 BitPay, Inc.
# Distributed under the MIT/X11 software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

import subprocess
import os
import json
import sys

def bctest(testDir, testObj):
execargs = testObj['exec']
outputFn = testObj['output_cmp']
outputData = open(testDir + "/" + outputFn).read()

proc = subprocess.Popen(execargs, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
try:
outs = proc.communicate()
except OSError:
print("OSError, Failed to execute " + execargs[0])
sys.exit(1)

if outs[0] != outputData:
print("Output data mismatch for " + outputFn)
sys.exit(1)

def bctester(testDir, input_basename):
input_filename = testDir + "/" + input_basename
raw_data = open(input_filename).read()
input_data = json.loads(raw_data)

for testObj in input_data:
bctest(testDir, testObj)

sys.exit(0)

12 changes: 12 additions & 0 deletions src/test/bitcoin-util-test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/python
# Copyright 2014 BitPay, Inc.
# Distributed under the MIT/X11 software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

import os
import bctest

if __name__ == '__main__':
bctest.bctester(os.environ["srcdir"] + "/test/data",
"bitcoin-util-test.json")

5 changes: 5 additions & 0 deletions src/test/data/bitcoin-util-test.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[
{ "exec": ["./bitcoin-tx", "-create"],
"output_cmp": "blanktx.hex"
}
]
1 change: 1 addition & 0 deletions src/test/data/blanktx.hex
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
01000000000000000000

0 comments on commit d789386

Please sign in to comment.