forked from hyperledger/besu
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Stefan Pingel <stefan.pingel@consensys.net>
- Loading branch information
1 parent
94efb8a
commit 205e4ff
Showing
17 changed files
with
786 additions
and
7 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
244 changes: 244 additions & 0 deletions
244
.../tests/src/test/java/org/hyperledger/besu/tests/web3j/privacy/PrivCallAcceptanceTest.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,244 @@ | ||
/* | ||
* Copyright 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. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package org.hyperledger.besu.tests.web3j.privacy; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.assertj.core.api.Assertions.assertThatExceptionOfType; | ||
|
||
import org.hyperledger.besu.tests.acceptance.dsl.privacy.PrivacyAcceptanceTestBase; | ||
import org.hyperledger.besu.tests.acceptance.dsl.privacy.PrivacyNode; | ||
import org.hyperledger.besu.tests.web3j.generated.EventEmitter; | ||
|
||
import java.io.IOException; | ||
import java.math.BigInteger; | ||
import java.util.Arrays; | ||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.web3j.abi.FunctionEncoder; | ||
import org.web3j.abi.TypeReference; | ||
import org.web3j.abi.datatypes.Function; | ||
import org.web3j.abi.datatypes.Type; | ||
import org.web3j.abi.datatypes.generated.Uint256; | ||
import org.web3j.protocol.core.Request; | ||
import org.web3j.protocol.core.methods.request.Transaction; | ||
import org.web3j.protocol.core.methods.response.EthCall; | ||
import org.web3j.protocol.core.methods.response.TransactionReceipt; | ||
import org.web3j.protocol.exceptions.ClientConnectionException; | ||
import org.web3j.protocol.http.HttpService; | ||
import org.web3j.tx.Contract; | ||
|
||
public class PrivCallAcceptanceTest extends PrivacyAcceptanceTestBase { | ||
|
||
private static final long POW_CHAIN_ID = 2018; | ||
private static final int VALUE = 1024; | ||
|
||
private PrivacyNode minerNode; | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
minerNode = | ||
privacyBesu.createPrivateTransactionEnabledMinerNode( | ||
"miner-node", privacyAccountResolver.resolve(0)); | ||
privacyCluster.start(minerNode); | ||
} | ||
|
||
@Test | ||
public void mustReturnCorrectValue() throws Exception { | ||
|
||
final String privacyGroupId = | ||
minerNode.execute( | ||
privacyTransactions.createPrivacyGroup( | ||
"myGroupName", "my group description", minerNode)); | ||
|
||
final EventEmitter eventEmitter = | ||
minerNode.execute( | ||
privateContractTransactions.createSmartContractWithPrivacyGroupId( | ||
EventEmitter.class, | ||
minerNode.getTransactionSigningKey(), | ||
POW_CHAIN_ID, | ||
minerNode.getEnclaveKey(), | ||
privacyGroupId)); | ||
|
||
privateContractVerifier | ||
.validPrivateContractDeployed( | ||
eventEmitter.getContractAddress(), minerNode.getAddress().toString()) | ||
.verify(eventEmitter); | ||
|
||
final Request<Object, EthCall> priv_call = privCall(privacyGroupId, eventEmitter, false, false); | ||
|
||
EthCall resp = priv_call.send(); | ||
|
||
String value = resp.getValue(); | ||
assertThat(new BigInteger(value.substring(2), 16)).isEqualByComparingTo(BigInteger.ZERO); | ||
|
||
final TransactionReceipt receipt = eventEmitter.store(BigInteger.valueOf(VALUE)).send(); | ||
assertThat(receipt).isNotNull(); | ||
|
||
resp = priv_call.send(); | ||
value = resp.getValue(); | ||
assertThat(new BigInteger(value.substring(2), 16)) | ||
.isEqualByComparingTo(BigInteger.valueOf(VALUE)); | ||
} | ||
|
||
@Test | ||
public void mustNotSucceedWithNonExistingPrivacyGroup() { | ||
|
||
final String privacyGroupId = | ||
minerNode.execute( | ||
privacyTransactions.createPrivacyGroup( | ||
"myGroupName", "my group description", minerNode)); | ||
|
||
final EventEmitter eventEmitter = | ||
minerNode.execute( | ||
privateContractTransactions.createSmartContractWithPrivacyGroupId( | ||
EventEmitter.class, | ||
minerNode.getTransactionSigningKey(), | ||
POW_CHAIN_ID, | ||
minerNode.getEnclaveKey(), | ||
privacyGroupId)); | ||
|
||
System.out.println("Address: " + eventEmitter.getContractAddress()); | ||
|
||
privateContractVerifier | ||
.validPrivateContractDeployed( | ||
eventEmitter.getContractAddress(), minerNode.getAddress().toString()) | ||
.verify(eventEmitter); | ||
|
||
final String invalidPrivacyGroup = constructInvalidString(privacyGroupId); | ||
final Request<Object, EthCall> priv_call = | ||
privCall(invalidPrivacyGroup, eventEmitter, false, false); | ||
|
||
assertThatExceptionOfType(ClientConnectionException.class) | ||
.isThrownBy(() -> priv_call.send()) | ||
.withMessageContaining("Privacy group does not exist."); | ||
} | ||
|
||
@Test | ||
public void mustNotSucceedWithWronglyEncodedFunction() { | ||
|
||
final String privacyGroupId = | ||
minerNode.execute( | ||
privacyTransactions.createPrivacyGroup( | ||
"myGroupName", "my group description", minerNode)); | ||
|
||
final EventEmitter eventEmitter = | ||
minerNode.execute( | ||
privateContractTransactions.createSmartContractWithPrivacyGroupId( | ||
EventEmitter.class, | ||
minerNode.getTransactionSigningKey(), | ||
POW_CHAIN_ID, | ||
minerNode.getEnclaveKey(), | ||
privacyGroupId)); | ||
|
||
privateContractVerifier | ||
.validPrivateContractDeployed( | ||
eventEmitter.getContractAddress(), minerNode.getAddress().toString()) | ||
.verify(eventEmitter); | ||
|
||
final Request<Object, EthCall> priv_call = privCall(privacyGroupId, eventEmitter, true, false); | ||
|
||
assertThatExceptionOfType(ClientConnectionException.class) | ||
.isThrownBy(() -> priv_call.send()) | ||
.withMessageContaining("Invalid params"); | ||
} | ||
|
||
@Test | ||
public void mustReturn0xUsingInvalidContractAddress() throws IOException { | ||
|
||
final String privacyGroupId = | ||
minerNode.execute( | ||
privacyTransactions.createPrivacyGroup( | ||
"myGroupName", "my group description", minerNode)); | ||
|
||
final EventEmitter eventEmitter = | ||
minerNode.execute( | ||
privateContractTransactions.createSmartContractWithPrivacyGroupId( | ||
EventEmitter.class, | ||
minerNode.getTransactionSigningKey(), | ||
POW_CHAIN_ID, | ||
minerNode.getEnclaveKey(), | ||
privacyGroupId)); | ||
|
||
privateContractVerifier | ||
.validPrivateContractDeployed( | ||
eventEmitter.getContractAddress(), minerNode.getAddress().toString()) | ||
.verify(eventEmitter); | ||
|
||
final Request<Object, EthCall> priv_call = privCall(privacyGroupId, eventEmitter, false, true); | ||
|
||
final EthCall result = priv_call.send(); | ||
|
||
assertThat(result).isNotNull(); | ||
assertThat(result.getResult()).isEqualTo("0x"); | ||
} | ||
|
||
@NotNull | ||
private String constructInvalidString(final String privacyGroupId) { | ||
final char[] chars = privacyGroupId.toCharArray(); | ||
if (chars[3] == '0') { | ||
chars[3] = '1'; | ||
} else { | ||
chars[3] = '0'; | ||
} | ||
return String.valueOf(chars); | ||
} | ||
|
||
@NotNull | ||
private Request<Object, EthCall> privCall( | ||
final String privacyGroupId, | ||
final Contract eventEmitter, | ||
final boolean useInvalidParameters, | ||
final boolean useInvalidContractAddress) { | ||
|
||
final Uint256 invalid = new Uint256(BigInteger.TEN); | ||
|
||
@SuppressWarnings("rawtypes") | ||
final List<Type> inputParameters = | ||
useInvalidParameters ? Arrays.asList(invalid) : Collections.emptyList(); | ||
|
||
final Function function = | ||
new Function( | ||
"value", | ||
inputParameters, | ||
Arrays.<TypeReference<?>>asList(new TypeReference<Uint256>() {})); | ||
|
||
final String encoded = FunctionEncoder.encode(function); | ||
|
||
final HttpService httpService = | ||
new HttpService( | ||
"http://" | ||
+ minerNode.getBesu().getHostName() | ||
+ ":" | ||
+ minerNode.getBesu().getJsonRpcSocketPort().get()); | ||
|
||
final String validContractAddress = eventEmitter.getContractAddress(); | ||
final String invalidContractAddress = constructInvalidString(validContractAddress); | ||
final String contractAddress = | ||
useInvalidContractAddress ? invalidContractAddress : validContractAddress; | ||
|
||
final Transaction transaction = | ||
Transaction.createEthCallTransaction(null, contractAddress, encoded); | ||
|
||
return new Request<>( | ||
"priv_call", | ||
Arrays.asList(privacyGroupId, transaction, "latest"), | ||
httpService, | ||
EthCall.class); | ||
} | ||
} |
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
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
Oops, something went wrong.