bisq/cli/test.sh

82 lines
2.2 KiB
Bash
Raw Normal View History

2020-04-29 11:59:05 -03:00
#!/usr/bin/env bats
2020-04-26 20:35:09 +02:00
#
2020-04-29 11:59:05 -03:00
# bats v0.4.0 project
2020-04-26 20:35:09 +02:00
#
2020-04-29 11:59:05 -03:00
# https://github.com/sstephenson/bats/tree/v0.4.0
#
# Prior to running this script, run:
#
# ./bisq-daemon --apiPassword=xyz
#
2020-04-29 11:59:05 -03:00
# To run this script:
#
# cd <project-root-dir>
# bats cli/test.sh
2020-04-29 11:59:05 -03:00
#
# The data directory used must contain an unencrypted wallet with a 0 BTC balance
2020-04-29 11:59:05 -03:00
@test "test unsupported method error" {
run ./bisq-cli --password=xyz bogus
[ "$status" -eq 1 ]
echo "actual output: $output" >&2 # printed only on test failure
[ "$output" = "Error: 'bogus' is not a supported method" ]
}
2020-04-29 11:59:05 -03:00
@test "test unrecognized option error" {
run ./bisq-cli --bogus getversion
[ "$status" -eq 1 ]
echo "actual output: $output" >&2
[ "$output" = "Error: bogus is not a recognized option" ]
}
2020-04-29 11:59:05 -03:00
@test "test missing required password option error" {
run ./bisq-cli getversion
[ "$status" -eq 1 ]
echo "actual output: $output" >&2
[ "$output" = "Error: missing required 'password' option" ]
}
2020-04-29 11:59:05 -03:00
@test "test incorrect password error" {
run ./bisq-cli --password=bogus getversion
[ "$status" -eq 1 ]
echo "actual output: $output" >&2
[ "$output" = "Error: incorrect 'password' rpc header value" ]
}
2020-04-29 11:59:05 -03:00
@test "test getversion call with quoted password" {
run ./bisq-cli --password="xyz" getversion
[ "$status" -eq 0 ]
echo "actual output: $output" >&2
[ "$output" = "1.3.2" ]
}
2020-04-29 11:59:05 -03:00
@test "test getversion" {
run ./bisq-cli --password=xyz getversion
[ "$status" -eq 0 ]
echo "actual output: $output" >&2
[ "$output" = "1.3.2" ]
}
2020-04-29 11:59:05 -03:00
@test "test getbalance (available & unlocked wallet with 0 btc balance)" {
run ./bisq-cli --password=xyz getbalance
[ "$status" -eq 0 ]
echo "actual output: $output" >&2
[ "$output" = "0.00000000" ]
}
2020-04-29 11:59:05 -03:00
@test "test help displayed on stderr if no options or arguments" {
run ./bisq-cli
[ "$status" -eq 1 ]
[ "${lines[0]}" = "Bisq RPC Client" ]
[ "${lines[1]}" = "Usage: bisq-cli [options] <method>" ]
# TODO add asserts after help text is modified for new endpoints
}
2020-04-29 11:59:05 -03:00
@test "test --help option" {
run ./bisq-cli --help
[ "$status" -eq 0 ]
[ "${lines[0]}" = "Bisq RPC Client" ]
[ "${lines[1]}" = "Usage: bisq-cli [options] <method>" ]
# TODO add asserts after help text is modified for new endpoints
}