forked from hyperledger/besu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
on-chain-privacy-groups (hyperledger#423)
Introduce on-chain privacy groups with add and remove functionality. Signed-off-by: Ivaylo Kirilov <iikirilov@gmail.com>
- Loading branch information
Showing
88 changed files
with
5,108 additions
and
250 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
52 changes: 52 additions & 0 deletions
52
.../besu/tests/acceptance/dsl/condition/eth/NewPendingTransactionFilterChangesCondition.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,52 @@ | ||
/* | ||
* 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.acceptance.dsl.condition.eth; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import org.hyperledger.besu.tests.acceptance.dsl.WaitUtils; | ||
import org.hyperledger.besu.tests.acceptance.dsl.condition.Condition; | ||
import org.hyperledger.besu.tests.acceptance.dsl.node.Node; | ||
import org.hyperledger.besu.tests.acceptance.dsl.transaction.eth.EthFilterChangesTransaction; | ||
|
||
import java.util.List; | ||
|
||
import org.web3j.protocol.core.methods.response.EthLog; | ||
|
||
public class NewPendingTransactionFilterChangesCondition implements Condition { | ||
|
||
private final EthFilterChangesTransaction filterChanges; | ||
private final List<String> transactionHashes; | ||
|
||
public NewPendingTransactionFilterChangesCondition( | ||
final EthFilterChangesTransaction filterChanges, final List<String> transactionHashes) { | ||
|
||
this.filterChanges = filterChanges; | ||
this.transactionHashes = transactionHashes; | ||
} | ||
|
||
@Override | ||
public void verify(final Node node) { | ||
WaitUtils.waitFor( | ||
() -> { | ||
final EthLog response = node.execute(filterChanges); | ||
assertThat(response).isNotNull(); | ||
assertThat(response.getResult().size()).isEqualTo(transactionHashes.size()); | ||
for (int i = 0; i < transactionHashes.size(); ++i) { | ||
assertThat(response.getLogs().get(0).get()).isEqualTo(transactionHashes.get(0)); | ||
} | ||
}); | ||
} | ||
} |
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
52 changes: 52 additions & 0 deletions
52
...er/besu/tests/acceptance/dsl/privacy/condition/ExpectValidOnChainPrivacyGroupCreated.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,52 @@ | ||
/* | ||
* 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.acceptance.dsl.privacy.condition; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import org.hyperledger.besu.tests.acceptance.dsl.privacy.PrivacyNode; | ||
import org.hyperledger.besu.tests.acceptance.dsl.privacy.transaction.PrivacyTransactions; | ||
import org.hyperledger.besu.tests.acceptance.dsl.transaction.privacy.PrivacyRequestFactory; | ||
|
||
import java.util.List; | ||
|
||
import org.awaitility.Awaitility; | ||
import org.web3j.utils.Base64String; | ||
|
||
public class ExpectValidOnChainPrivacyGroupCreated implements PrivateCondition { | ||
|
||
private final PrivacyTransactions transactions; | ||
private final PrivacyRequestFactory.OnChainPrivacyGroup expected; | ||
|
||
public ExpectValidOnChainPrivacyGroupCreated( | ||
final PrivacyTransactions transactions, | ||
final PrivacyRequestFactory.OnChainPrivacyGroup expected) { | ||
this.transactions = transactions; | ||
this.expected = expected; | ||
} | ||
|
||
@Override | ||
public void verify(final PrivacyNode node) { | ||
Awaitility.await() | ||
.untilAsserted( | ||
() -> { | ||
final List<PrivacyRequestFactory.OnChainPrivacyGroup> groups = | ||
node.execute( | ||
transactions.findOnChainPrivacyGroup( | ||
Base64String.unwrapList(expected.getMembers()))); | ||
assertThat(groups).contains(expected); | ||
}); | ||
} | ||
} |
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
78 changes: 78 additions & 0 deletions
78
...acceptance/dsl/privacy/contract/CallOnChianPermissioningPrivateSmartContractFunction.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,78 @@ | ||
/* | ||
* 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.acceptance.dsl.privacy.contract; | ||
|
||
import org.hyperledger.besu.tests.acceptance.dsl.transaction.NodeRequests; | ||
import org.hyperledger.besu.tests.acceptance.dsl.transaction.Transaction; | ||
|
||
import java.io.IOException; | ||
import java.math.BigInteger; | ||
|
||
import org.web3j.crypto.Credentials; | ||
import org.web3j.protocol.besu.Besu; | ||
import org.web3j.tx.BesuPrivateTransactionManager; | ||
import org.web3j.tx.PrivateTransactionManager; | ||
import org.web3j.tx.gas.BesuPrivacyGasProvider; | ||
import org.web3j.utils.Base64String; | ||
|
||
public class CallOnChianPermissioningPrivateSmartContractFunction implements Transaction<String> { | ||
|
||
private static final BesuPrivacyGasProvider GAS_PROVIDER = | ||
new BesuPrivacyGasProvider(BigInteger.valueOf(1000)); | ||
private final String contractAddress; | ||
private final String encodedFunction; | ||
private final Credentials senderCredentials; | ||
private final long chainId; | ||
private final Base64String privateFrom; | ||
private final Base64String privacyGroupId; | ||
|
||
public CallOnChianPermissioningPrivateSmartContractFunction( | ||
final String contractAddress, | ||
final String encodedFunction, | ||
final String transactionSigningKey, | ||
final long chainId, | ||
final String privateFrom, | ||
final String privacyGroupId) { | ||
|
||
this.contractAddress = contractAddress; | ||
this.encodedFunction = encodedFunction; | ||
this.senderCredentials = Credentials.create(transactionSigningKey); | ||
this.chainId = chainId; | ||
this.privateFrom = Base64String.wrap(privateFrom); | ||
this.privacyGroupId = Base64String.wrap(privacyGroupId); | ||
} | ||
|
||
@Override | ||
public String execute(final NodeRequests node) { | ||
final Besu besu = node.privacy().getBesuClient(); | ||
|
||
final PrivateTransactionManager privateTransactionManager = | ||
new BesuPrivateTransactionManager( | ||
besu, GAS_PROVIDER, senderCredentials, chainId, privateFrom, privacyGroupId); | ||
|
||
try { | ||
return privateTransactionManager | ||
.sendTransaction( | ||
GAS_PROVIDER.getGasPrice(), | ||
GAS_PROVIDER.getGasLimit(), | ||
contractAddress, | ||
encodedFunction, | ||
null) | ||
.getTransactionHash(); | ||
} catch (final IOException e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
} |
Oops, something went wrong.