This repository has been archived by the owner on Sep 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactoring and removing the duplicate call to web3j * Single shared variable for the private key for the first genesis account
- Loading branch information
Showing
8 changed files
with
120 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 0 additions & 44 deletions
44
...h/pegasys/pantheon/tests/acceptance/dsl/condition/eth/EthGetTransactionReceiptEquals.java
This file was deleted.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
...s/src/test/java/tech/pegasys/pantheon/tests/acceptance/dsl/contract/ContractVerifier.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright 2018 ConsenSys AG. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
package tech.pegasys.pantheon.tests.acceptance.dsl.contract; | ||
|
||
import tech.pegasys.pantheon.tests.acceptance.dsl.account.Account; | ||
|
||
public class ContractVerifier { | ||
|
||
private final Account sender; | ||
|
||
public ContractVerifier(final Account sender) { | ||
this.sender = sender; | ||
} | ||
|
||
public ExpectValidTransactionReceipt validTransactionReceipt(final String contractAddress) { | ||
return new ExpectValidTransactionReceipt(sender, contractAddress); | ||
} | ||
} |
74 changes: 74 additions & 0 deletions
74
...va/tech/pegasys/pantheon/tests/acceptance/dsl/contract/ExpectValidTransactionReceipt.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* Copyright 2018 ConsenSys AG. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
package tech.pegasys.pantheon.tests.acceptance.dsl.contract; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import tech.pegasys.pantheon.tests.acceptance.dsl.account.Account; | ||
|
||
import java.math.BigInteger; | ||
import java.util.Optional; | ||
|
||
import org.web3j.protocol.core.methods.response.TransactionReceipt; | ||
import org.web3j.tx.Contract; | ||
|
||
public class ExpectValidTransactionReceipt { | ||
|
||
private final String senderAddress; | ||
private final String contractAddress; | ||
|
||
public ExpectValidTransactionReceipt(final Account sender, final String contractAddress) { | ||
this.contractAddress = contractAddress; | ||
this.senderAddress = sender.getAddress(); | ||
} | ||
|
||
public void verify(final Contract contract) { | ||
|
||
assertThat(contract).isNotNull(); | ||
final Optional<TransactionReceipt> receipt = contract.getTransactionReceipt(); | ||
|
||
// We're expecting a receipt | ||
assertThat(receipt).isNotNull(); | ||
assertThat(receipt.isPresent()).isTrue(); | ||
final TransactionReceipt transactionReceipt = receipt.get(); | ||
|
||
// Contract transaction has no 'to' address or contract address | ||
assertThat(transactionReceipt.getTo()).isNull(); | ||
assertThat(transactionReceipt.getRoot()).isNull(); | ||
|
||
// Variables outside the control of the test :. just check existence | ||
assertThat(transactionReceipt.getBlockHash()).isNotBlank(); | ||
assertThat(transactionReceipt.getTransactionHash()).isNotBlank(); | ||
assertThat(transactionReceipt.getTransactionIndex()).isNotNull(); | ||
assertThat(transactionReceipt.getTransactionHash()).isNotNull(); | ||
|
||
// Block zero is the genesis, expecting anytime after then | ||
assertThat(transactionReceipt.getBlockNumber()).isGreaterThanOrEqualTo(BigInteger.ONE); | ||
|
||
// Address generation is deterministic, based on the sender address and the transaction nonce | ||
assertThat(transactionReceipt.getContractAddress()).isEqualTo(contractAddress); | ||
|
||
// Expecting successful transaction (status '0x1') | ||
assertThat(transactionReceipt.getStatus()).isEqualTo("0x1"); | ||
|
||
// Address for the account that signed (and paid) for the contract deployment transaction | ||
assertThat(transactionReceipt.getFrom()).isEqualTo(senderAddress); | ||
|
||
// No logs from expected from the contract deployment | ||
assertThat(transactionReceipt.getLogs()).isNotNull(); | ||
assertThat(transactionReceipt.getLogs().size()).isEqualTo(0); | ||
assertThat(transactionReceipt.getLogsBloom()) | ||
.isEqualTo( | ||
"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters