Add rewards tests

This commit is contained in:
Jonathan "Duke" Leto
2018-08-13 09:55:17 +02:00
parent 84b40e08a2
commit 66027c0219
2 changed files with 39 additions and 9 deletions

View File

@@ -184,7 +184,7 @@ class CryptoConditionsTest (BitcoinTestFramework):
result = rpc.rewardsinfo("none") result = rpc.rewardsinfo("none")
assert_equal(result['result'], 'error') assert_equal(result['result'], 'error')
result = rpc.rewardscreatefunding("STUFF", "1000", "5", "1", "10", "10") result = rpc.rewardscreatefunding("STUFF", "1000", "5", "0", "10", "10")
assert result['hex'], 'got raw xtn' assert result['hex'], 'got raw xtn'
txid = rpc.sendrawtransaction(result['hex']) txid = rpc.sendrawtransaction(result['hex'])
assert txid, 'got txid' assert txid, 'got txid'
@@ -195,7 +195,7 @@ class CryptoConditionsTest (BitcoinTestFramework):
assert_equal(result['result'], 'success') assert_equal(result['result'], 'success')
assert_equal(result['name'], 'STUFF') assert_equal(result['name'], 'STUFF')
assert_equal(result['APR'], "5.00000000") assert_equal(result['APR'], "5.00000000")
assert_equal(result['minseconds'], 86400) assert_equal(result['minseconds'], 0)
assert_equal(result['maxseconds'], 864000) assert_equal(result['maxseconds'], 864000)
assert_equal(result['funding'], "1000.00000000") assert_equal(result['funding'], "1000.00000000")
assert_equal(result['mindeposit'], "10.00000000") assert_equal(result['mindeposit'], "10.00000000")
@@ -210,7 +210,26 @@ class CryptoConditionsTest (BitcoinTestFramework):
fundingtxid = result['hex'] fundingtxid = result['hex']
assert fundingtxid, "got funding txid" assert fundingtxid, "got funding txid"
# the previous xtn has not been broadcasted yet
result = rpc.rewardsunlock("STUFF", fundingtxid) result = rpc.rewardsunlock("STUFF", fundingtxid)
assert_equal(result['result'], 'error')
# wrong plan name
result = rpc.rewardsunlock("SHTUFF", fundingtxid)
assert_equal(result['result'], 'error')
txid = rpc.sendrawtransaction(fundingtxid)
assert txid, 'got txid from sendrawtransaction'
# confirm the xtn above
rpc.generate(1)
result = rpc.rewardsunlock("STUFF", fundingtxid)
# currently failing because reward is not > txfee?
# assert_equal(result['result'], 'success')
result = rpc.rewardslock("STUFF", fundingtxid, "-5")
assert_equal(result['result'], 'error')
def run_test (self): def run_test (self):
print("Mining blocks...") print("Mining blocks...")

View File

@@ -5003,7 +5003,7 @@ UniValue rewardscreatefunding(const UniValue& params, bool fHelp)
UniValue rewardslock(const UniValue& params, bool fHelp) UniValue rewardslock(const UniValue& params, bool fHelp)
{ {
UniValue result(UniValue::VOBJ); char *name; uint256 fundingtxid; uint64_t amount; std::string hex; UniValue result(UniValue::VOBJ); char *name; uint256 fundingtxid; int64_t amount; std::string hex;
if ( fHelp || params.size() != 3 ) if ( fHelp || params.size() != 3 )
throw runtime_error("rewardslock name fundingtxid amount\n"); throw runtime_error("rewardslock name fundingtxid amount\n");
if ( ensure_CCrequirements() < 0 ) if ( ensure_CCrequirements() < 0 )
@@ -5014,11 +5014,19 @@ UniValue rewardslock(const UniValue& params, bool fHelp)
fundingtxid = Parseuint256((char *)params[1].get_str().c_str()); fundingtxid = Parseuint256((char *)params[1].get_str().c_str());
amount = atof(params[2].get_str().c_str()) * COIN; amount = atof(params[2].get_str().c_str()) * COIN;
hex = RewardsLock(0,name,fundingtxid,amount); hex = RewardsLock(0,name,fundingtxid,amount);
if ( amount > 0 ) {
if ( hex.size() > 0 ) if ( hex.size() > 0 )
{ {
result.push_back(Pair("result", "success")); result.push_back(Pair("result", "success"));
result.push_back(Pair("hex", hex)); result.push_back(Pair("hex", hex));
} else result.push_back(Pair("error", "couldnt create rewards lock transaction")); } else {
result.push_back(Pair("result", "error"));
result.push_back(Pair("error", "couldnt create rewards lock transaction"));
}
} else {
result.push_back(Pair("result", "error"));
result.push_back(Pair("error", "amount must be positive"));
}
return(result); return(result);
} }
@@ -5070,7 +5078,10 @@ UniValue rewardsunlock(const UniValue& params, bool fHelp)
{ {
result.push_back(Pair("result", "success")); result.push_back(Pair("result", "success"));
result.push_back(Pair("hex", hex)); result.push_back(Pair("hex", hex));
} else result.push_back(Pair("error", "couldnt create rewards unlock transaction")); } else {
result.push_back(Pair("result", "error"));
result.push_back(Pair("error", "couldnt create rewards unlock transaction"));
}
return(result); return(result);
} }