MarcoFalke
ccccc591a4
[qa] Add option --portseed to test_framework
9 years ago
MarcoFalke
fa494dec79
[qa] pull-tester: Run rpc test in parallel
9 years ago
MarcoFalke
4e14afe42f
Merge #7971 : [qa] Refactor test_framework and pull tester
...
fad3366
[qa] pull-tester: Adjust comment (MarcoFalke)
fafb33c
[qa] Stop other nodes, even when one fails to stop (MarcoFalke)
2222dae
[qa] Update README.md (MarcoFalke)
fabbf6b
[qa] Refactor test_framework and pull tester (MarcoFalke)
9 years ago
MarcoFalke
3e90fe6534
Merge #8018 : Autofind rpc tests --srcdir
...
5ea4508
Autofind rpc tests --srcdir (Jonas Schnelli)
9 years ago
Jonas Schnelli
5ea450834e
Autofind rpc tests --srcdir
9 years ago
Wladimir J. van der Laan
65fee8e699
test: Revert fatal-ness of missing python-zmq
...
It looks like travis is using the `travis.yml` from the branch, but runs
the test script from the branch merged into master. This causes
pull requests created before the QA tests python 3 transition to fail.
This temporarily reverts fa05e22e91
(#7851 ). It can be restored when this is no longer an issue.
9 years ago
MarcoFalke
fad336648c
[qa] pull-tester: Adjust comment
9 years ago
MarcoFalke
fafb33cdef
[qa] Stop other nodes, even when one fails to stop
9 years ago
MarcoFalke
2222dae6e3
[qa] Update README.md
9 years ago
MarcoFalke
fabbf6bd62
[qa] Refactor test_framework and pull tester
...
* log to stdout
* increase range for p2p and rpc ports
* UPPERCASE_CONSTANTS
* Stop nodes on CTRL+C
9 years ago
MarcoFalke
fa389d4edc
[qa] Switch to py3
9 years ago
Wladimir J. van der Laan
0630353323
Merge #7953 : Create signmessagewithprivkey rpc
...
7db0ecb
Test for signing messages (Andrew Chow)
f90efbf
Create signmessagewithprivkey rpc (Andrew)
9 years ago
Pavel Janík
43bbcd0753
[qa] Fix typos in doc and comments
9 years ago
MarcoFalke
fa17f93fbd
[qa] smartfees: Properly use ordered dict
9 years ago
Andrew Chow
7db0ecb90c
Test for signing messages
...
New rpc test for signing and verifying messages.
9 years ago
MarcoFalke
fada064f67
[qa] test_framework: Properly print exceptions and assert empty dict
9 years ago
MarcoFalke
5555528b47
[qa] mininode: Unfiddle strings into bytes
9 years ago
Suhas Daftuar
807fa47a1e
Tests: Fix deserialization of reject messages
...
Assume that reject messages for blocks or transactions due to reason
REJECT_MALFORMED will not include the hash of the block or tx being rejected.
9 years ago
Wladimir J. van der Laan
a1eb344ba8
Merge #7762 : [ZMQ] append a message sequence number to every ZMQ notification
...
0b25a9f
[ZMQ] append a message sequence number to every ZMQ notification (Jonas Schnelli)
de821d5
[ZMQ] refactor message string (Jonas Schnelli)
9 years ago
Jonas Schnelli
0b25a9fb42
[ZMQ] append a message sequence number to every ZMQ notification
9 years ago
Joao Fonseca
5d217decc1
Add test to check spendable and unspendable UTXO on RPC listunspent
9 years ago
Joao Fonseca
fa942c755a
Move method to check matches within arrays on util.py
9 years ago
Wladimir J. van der Laan
fa9d86f8c4
Merge #7851 : [qa] pull-tester: Don't mute zmq ImportError
...
fae1f4e
[qa] rpc-tests: Fix link in comment and label error msg (MarcoFalke)
faa4f22
[qa] pull-tester: Exit early when no tests are run (MarcoFalke)
fa05e22
[qa] pull-tester: Don't mute zmq ImportError (MarcoFalke)
9 years ago
MarcoFalke
fae1f4ebfe
[qa] rpc-tests: Fix link in comment and label error msg
9 years ago
Wladimir J. van der Laan
b1bf511af6
Merge #7833 : tests: Check Content-Type header returned from RPC server
...
5078ca4
tests: Check Content-Type header returned from RPC server (Wladimir J. van der Laan)
9 years ago
João Barbosa
af4fe7fd12
Add change options to fundrawtransaction
9 years ago
Wladimir J. van der Laan
6ef5e000a2
Merge #7853 : [qa] py2: Unfiddle strings into bytes explicitly
...
faa41ee
[qa] py2: Unfiddle strings into bytes explicitly (MarcoFalke)
9 years ago
Rusty Russell
d12760b16a
rpc-tests: handle KeyError nicely in test_framework.py
...
btcdrak wrote this for me.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
9 years ago
Rusty Russell
85c807c9ea
getblockchaininfo: make bip9_softforks an object, not an array.
...
We can't change "softforks", but it seems far more logical to use tags
in an object rather than using an "id" field in an array.
For example, to get the csv status before, you need to iterate the
array to find the entry with 'id' field equal to "csv":
jq '.bip9_softforks | map(select(.id == "csv"))[] | .status'
Now:
jq '.bip9_softforks.csv.status'
There is no issue with fork names being incompatible with JSON tags,
since we're selecting them ourselves.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
9 years ago
MarcoFalke
faa41ee204
[qa] py2: Unfiddle strings into bytes explicitly
9 years ago
MarcoFalke
faa4f22342
[qa] pull-tester: Exit early when no tests are run
9 years ago
MarcoFalke
fa05e22e91
[qa] pull-tester: Don't mute zmq ImportError
9 years ago
Suhas Daftuar
da5fdbb3a2
Test relay of version 2 transactions
9 years ago
Suhas Daftuar
5cb1d8a207
Tests: move get_bip9_status to util.py
9 years ago
Wladimir J. van der Laan
5078ca4543
tests: Check Content-Type header returned from RPC server
...
Check the Content-Type header that is returned from the RPC server. Only
if it is `application/json` the data is supposed to be parsed as JSON.
This gives better reporting if the HTTP server happens to return an error that is
not JSON-formatted, which is the case if it happens at a lower level
before JSON-RPC kicks in.
Before: `Unexpected exception caught during testing: No JSON object could be decoded`
After: `JSONRPC error: non-JSON HTTP response with '403 Forbidden' from server`
9 years ago
Wladimir J. van der Laan
3bc71e1572
Merge #7802 : [qa] httpbasics: Actually test second connection
...
fa24456
[qa] httpbasics: Actually test second connection (MarcoFalke)
9 years ago
Wladimir J. van der Laan
401c65c6b3
Merge #7803 : [qa] maxblocksinflight: Actually enable test
...
fac724c
[qa] maxblocksinflight: Actually enable test (MarcoFalke)
9 years ago
Wladimir J. van der Laan
70ac71b877
Merge #7801 : [qa] Remove misleading "errorString syntax"
...
ffff866
[qa] Remove misleading "errorString syntax" (MarcoFalke)
9 years ago
mruddy
92107d574d
RPC: add versionHex in getblock and getblockheader JSON results; expand data in getblockchaininfo bip9_softforks field.
9 years ago
MarcoFalke
ffff866da8
[qa] Remove misleading "errorString syntax"
9 years ago
MarcoFalke
fac724c78f
[qa] maxblocksinflight: Actually enable test
9 years ago
MarcoFalke
fa24456d0c
[qa] httpbasics: Actually test second connection
9 years ago
Wladimir J. van der Laan
ff5874bcf7
Merge #7778 : [qa] Bug fixes and refactor
...
4444806
[qa] mininode: Combine struct.pack format strings (MarcoFalke)
faaa3c9
[qa] mininode: Catch exceptions in got_data (MarcoFalke)
fa2cea1
[qa] rpc-tests: Properly use integers, floats (MarcoFalke)
fa524d9
[qa] Use python2/3 syntax (MarcoFalke)
9 years ago
MarcoFalke
444480649f
[qa] mininode: Combine struct.pack format strings
9 years ago
MarcoFalke
faaa3c9b65
[qa] mininode: Catch exceptions in got_data
9 years ago
MarcoFalke
fa2cea163b
[qa] rpc-tests: Properly use integers, floats
9 years ago
Wladimir J. van der Laan
e9723cb273
Merge #7489 : tests: Make proxy_test work on travis servers without IPv6
...
7539f1a
tests: Make proxy_test work on travis servers without IPv6 (Wladimir J. van der Laan)
9 years ago
MarcoFalke
fa524d9ddb
[qa] Use python2/3 syntax
9 years ago
BtcDrak
40234ba89f
Fix comments in tests
9 years ago
Wladimir J. van der Laan
e8a8f3d4b2
Merge #7648 : BIP9 versionbits softfork for BIP68, BIP112 and BIP113
...
71527a0
Test of BIP9 fork activation of mtp, csv, sequence_lock (NicolasDorier)
19d73d5
Add RPC test for BIP 68/112/113 soft fork. (Alex Morcos)
12c89c9
Policy: allow transaction version 2 relay policy. (BtcDrak)
02c2435
Soft fork logic for BIP68 (BtcDrak)
478fba6
Soft fork logic for BIP113 (BtcDrak)
65751a3
Add CHECKSEQUENCEVERIFY softfork through BIP9 (Pieter Wuille)
9 years ago