mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 09:50:32 +01:00
BlockChainTest, ChainSplitTest, ECKeyTest: use assertFalse(condition)
rather than assertTrue(!condition)
This commit is contained in:
parent
4fb4fe2380
commit
7b8b8650bc
@ -348,7 +348,7 @@ public class BlockChainTest {
|
||||
// The coinbase tx is not yet available to spend.
|
||||
assertEquals(Coin.ZERO, wallet.getBalance());
|
||||
assertEquals(FIFTY_COINS, wallet.getBalance(BalanceType.ESTIMATED));
|
||||
assertTrue(!coinbaseTransaction.isMature());
|
||||
assertFalse(coinbaseTransaction.isMature());
|
||||
|
||||
// Attempt to spend the coinbase - this should fail as the coinbase is not mature yet.
|
||||
try {
|
||||
@ -370,7 +370,7 @@ public class BlockChainTest {
|
||||
assertEquals(FIFTY_COINS, wallet.getBalance(BalanceType.ESTIMATED));
|
||||
|
||||
// The coinbase transaction is still not mature.
|
||||
assertTrue(!coinbaseTransaction.isMature());
|
||||
assertFalse(coinbaseTransaction.isMature());
|
||||
|
||||
// Attempt to spend the coinbase - this should fail.
|
||||
try {
|
||||
|
@ -571,10 +571,10 @@ public class ChainSplitTest {
|
||||
// Check the coinbase transaction is building and in the unspent pool only.
|
||||
final Transaction coinbase = txns.get(0);
|
||||
assertEquals(ConfidenceType.BUILDING, coinbase.getConfidence().getConfidenceType());
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.PENDING, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.PENDING, coinbase.getTxId()));
|
||||
assertTrue(wallet.poolContainsTxHash(WalletTransaction.Pool.UNSPENT, coinbase.getTxId()));
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.SPENT, coinbase.getTxId()));
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.DEAD, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.SPENT, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.DEAD, coinbase.getTxId()));
|
||||
|
||||
// Add blocks to b3 until we can spend the coinbase.
|
||||
Block firstTip = b3;
|
||||
@ -614,9 +614,9 @@ public class ChainSplitTest {
|
||||
// Transaction 1 (in block b2) is now on a side chain and should have confidence type of dead and be in
|
||||
// the dead pool only.
|
||||
assertEquals(TransactionConfidence.ConfidenceType.DEAD, coinbase.getConfidence().getConfidenceType());
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.PENDING, coinbase.getTxId()));
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.UNSPENT, coinbase.getTxId()));
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.SPENT, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.PENDING, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.UNSPENT, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.SPENT, coinbase.getTxId()));
|
||||
assertTrue(wallet.poolContainsTxHash(WalletTransaction.Pool.DEAD, coinbase.getTxId()));
|
||||
assertTrue(fodderIsDead.get());
|
||||
|
||||
@ -636,10 +636,10 @@ public class ChainSplitTest {
|
||||
|
||||
// The coinbase transaction should now have confidence type of building once more and in the unspent pool only.
|
||||
assertEquals(TransactionConfidence.ConfidenceType.BUILDING, coinbase.getConfidence().getConfidenceType());
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.PENDING, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.PENDING, coinbase.getTxId()));
|
||||
assertTrue(wallet.poolContainsTxHash(WalletTransaction.Pool.UNSPENT, coinbase.getTxId()));
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.SPENT, coinbase.getTxId()));
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.DEAD, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.SPENT, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.DEAD, coinbase.getTxId()));
|
||||
// However, fodder is still dead. Bitcoin Core doesn't keep killed transactions around in case they become
|
||||
// valid again later. They are just deleted from the mempool for good.
|
||||
|
||||
@ -659,9 +659,9 @@ public class ChainSplitTest {
|
||||
|
||||
// The coinbase transaction should now have the confidence type of dead and be in the dead pool only.
|
||||
assertEquals(TransactionConfidence.ConfidenceType.DEAD, coinbase.getConfidence().getConfidenceType());
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.PENDING, coinbase.getTxId()));
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.UNSPENT, coinbase.getTxId()));
|
||||
assertTrue(!wallet.poolContainsTxHash(WalletTransaction.Pool.SPENT, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.PENDING, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.UNSPENT, coinbase.getTxId()));
|
||||
assertFalse(wallet.poolContainsTxHash(WalletTransaction.Pool.SPENT, coinbase.getTxId()));
|
||||
assertTrue(wallet.poolContainsTxHash(WalletTransaction.Pool.DEAD, coinbase.getTxId()));
|
||||
}
|
||||
}
|
||||
|
@ -387,14 +387,14 @@ public class ECKeyTest {
|
||||
ECKey key = new ECKey();
|
||||
Optional<Instant> time = key.creationTime();
|
||||
assertTrue(time.isPresent());
|
||||
assertTrue(!key.isEncrypted());
|
||||
assertFalse(key.isEncrypted());
|
||||
byte[] originalPrivateKeyBytes = key.getPrivKeyBytes();
|
||||
ECKey encryptedKey = key.encrypt(keyCrypter, keyCrypter.deriveKey(PASSWORD1));
|
||||
assertEquals(time, encryptedKey.creationTime());
|
||||
assertTrue(encryptedKey.isEncrypted());
|
||||
assertNull(encryptedKey.getSecretBytes());
|
||||
key = encryptedKey.decrypt(keyCrypter.deriveKey(PASSWORD1));
|
||||
assertTrue(!key.isEncrypted());
|
||||
assertFalse(key.isEncrypted());
|
||||
assertArrayEquals(originalPrivateKeyBytes, key.getPrivKeyBytes());
|
||||
}
|
||||
|
||||
@ -408,7 +408,7 @@ public class ECKeyTest {
|
||||
assertTrue(encryptedKey.isEncrypted());
|
||||
assertNull(encryptedKey.getSecretBytes());
|
||||
ECKey rebornUnencryptedKey = encryptedKey.decrypt(keyCrypter.deriveKey(PASSWORD1));
|
||||
assertTrue(!rebornUnencryptedKey.isEncrypted());
|
||||
assertFalse(rebornUnencryptedKey.isEncrypted());
|
||||
assertArrayEquals(originalPrivateKeyBytes, rebornUnencryptedKey.getPrivKeyBytes());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user