Search in sources :

Example 21 with Enclave

use of org.hyperledger.besu.enclave.Enclave in project besu by hyperledger.

the class FlexiblePrivacyPrecompiledContractTest method testPayloadFoundInEnclaveWith64ByteResult.

@Test
public void testPayloadFoundInEnclaveWith64ByteResult() {
    final Enclave enclave = mock(Enclave.class);
    final FlexiblePrivacyPrecompiledContract contract = buildPrivacyPrecompiledContract(enclave);
    final List<Log> logs = new ArrayList<>();
    contract.setPrivateTransactionProcessor(mockPrivateTxProcessor(TransactionProcessingResult.successful(logs, 0, 0, Bytes.fromHexString(DEFAULT_OUTPUT), null)));
    final VersionedPrivateTransaction versionedPrivateTransaction = versionedPrivateTransactionBesu();
    final byte[] payload = convertVersionedPrivateTransactionToBytes(versionedPrivateTransaction);
    final String privateFrom = versionedPrivateTransaction.getPrivateTransaction().getPrivateFrom().toBase64String();
    final ReceiveResponse response = new ReceiveResponse(payload, PAYLOAD_TEST_PRIVACY_GROUP_ID, privateFrom);
    when(enclave.receive(any())).thenReturn(response);
    final FlexiblePrivacyPrecompiledContract contractSpy = spy(contract);
    Mockito.doReturn(true).when(contractSpy).canExecute(any(), any(), any(), any(), any(), any(), any(), any());
    final PrecompiledContract.PrecompileContractResult result = contractSpy.computePrecompile(privateTransactionLookupId64, messageFrame);
    final Bytes actual = result.getOutput();
    assertThat(actual).isEqualTo(Bytes.fromHexString(DEFAULT_OUTPUT));
}
Also used : Bytes(org.apache.tuweni.bytes.Bytes) PrecompiledContract(org.hyperledger.besu.evm.precompile.PrecompiledContract) Log(org.hyperledger.besu.evm.log.Log) Enclave(org.hyperledger.besu.enclave.Enclave) ReceiveResponse(org.hyperledger.besu.enclave.types.ReceiveResponse) ArrayList(java.util.ArrayList) VersionedPrivateTransaction(org.hyperledger.besu.ethereum.privacy.VersionedPrivateTransaction) Test(org.junit.Test)

Example 22 with Enclave

use of org.hyperledger.besu.enclave.Enclave in project besu by hyperledger.

the class FlexiblePrivacyPrecompiledContractTest method testPayloadNotFoundInEnclave.

@Test
public void testPayloadNotFoundInEnclave() {
    final Enclave enclave = mock(Enclave.class);
    final PrivacyPrecompiledContract contract = buildPrivacyPrecompiledContract(enclave);
    when(enclave.receive(any(String.class))).thenThrow(EnclaveClientException.class);
    final PrecompiledContract.PrecompileContractResult result = contract.computePrecompile(privateTransactionLookupId, messageFrame);
    final Bytes actual = result.getOutput();
    assertThat(actual).isEqualTo(Bytes.EMPTY);
}
Also used : Bytes(org.apache.tuweni.bytes.Bytes) PrecompiledContract(org.hyperledger.besu.evm.precompile.PrecompiledContract) Enclave(org.hyperledger.besu.enclave.Enclave) Test(org.junit.Test)

Example 23 with Enclave

use of org.hyperledger.besu.enclave.Enclave in project besu by hyperledger.

the class PrivacyPrecompiledContractTest method testEnclaveBelowRequiredVersion.

@Test
public void testEnclaveBelowRequiredVersion() {
    final Enclave enclave = mock(Enclave.class);
    final PrivacyPrecompiledContract contract = buildPrivacyPrecompiledContract(enclave);
    final PrivateTransaction privateTransaction = privateTransactionBesu();
    final byte[] payload = convertPrivateTransactionToBytes(privateTransaction);
    final ReceiveResponse responseWithoutSenderKey = new ReceiveResponse(payload, PAYLOAD_TEST_PRIVACY_GROUP_ID, null);
    when(enclave.receive(eq(privateTransactionLookupId.toBase64String()))).thenReturn(responseWithoutSenderKey);
    assertThatThrownBy(() -> contract.computePrecompile(privateTransactionLookupId, messageFrame)).isInstanceOf(EnclaveConfigurationException.class).hasMessage("Incompatible Orion version. Orion version must be 1.6.0 or greater.");
}
Also used : PrivateTransaction(org.hyperledger.besu.ethereum.privacy.PrivateTransaction) EnclaveConfigurationException(org.hyperledger.besu.enclave.EnclaveConfigurationException) Enclave(org.hyperledger.besu.enclave.Enclave) ReceiveResponse(org.hyperledger.besu.enclave.types.ReceiveResponse) Test(org.junit.Test)

Example 24 with Enclave

use of org.hyperledger.besu.enclave.Enclave in project besu by hyperledger.

the class PrivacyPrecompiledContractTest method testPayloadNotFoundInEnclave.

@Test
public void testPayloadNotFoundInEnclave() {
    final Enclave enclave = mock(Enclave.class);
    final PrivacyPrecompiledContract contract = buildPrivacyPrecompiledContract(enclave);
    when(enclave.receive(any(String.class))).thenThrow(EnclaveClientException.class);
    final PrecompiledContract.PrecompileContractResult result = contract.computePrecompile(privateTransactionLookupId, messageFrame);
    final Bytes actual = result.getOutput();
    assertThat(actual).isEqualTo(Bytes.EMPTY);
}
Also used : Bytes(org.apache.tuweni.bytes.Bytes) PrecompiledContract(org.hyperledger.besu.evm.precompile.PrecompiledContract) Enclave(org.hyperledger.besu.enclave.Enclave) Test(org.junit.Test)

Example 25 with Enclave

use of org.hyperledger.besu.enclave.Enclave in project besu by hyperledger.

the class PrivacyPrecompiledContractTest method testPrivateTransactionWithoutPrivateFrom.

@Test
public void testPrivateTransactionWithoutPrivateFrom() {
    final Enclave enclave = mock(Enclave.class);
    final PrivacyPrecompiledContract contract = buildPrivacyPrecompiledContract(enclave);
    final PrivateTransaction privateTransaction = spy(privateTransactionBesu());
    when(privateTransaction.getPrivateFrom()).thenReturn(Bytes.EMPTY);
    final byte[] payload = convertPrivateTransactionToBytes(privateTransaction);
    final String senderKey = privateTransaction.getPrivateFrom().toBase64String();
    final ReceiveResponse response = new ReceiveResponse(payload, PAYLOAD_TEST_PRIVACY_GROUP_ID, senderKey);
    when(enclave.receive(eq(privateTransactionLookupId.toBase64String()))).thenReturn(response);
    final Bytes expected = contract.compute(privateTransactionLookupId, messageFrame);
    assertThat(expected).isEqualTo(Bytes.EMPTY);
}
Also used : PrivateTransaction(org.hyperledger.besu.ethereum.privacy.PrivateTransaction) Bytes(org.apache.tuweni.bytes.Bytes) Enclave(org.hyperledger.besu.enclave.Enclave) ReceiveResponse(org.hyperledger.besu.enclave.types.ReceiveResponse) Test(org.junit.Test)

Aggregations

Enclave (org.hyperledger.besu.enclave.Enclave)26 Test (org.junit.Test)20 Bytes (org.apache.tuweni.bytes.Bytes)17 PrecompiledContract (org.hyperledger.besu.evm.precompile.PrecompiledContract)16 ReceiveResponse (org.hyperledger.besu.enclave.types.ReceiveResponse)14 PrivateTransaction (org.hyperledger.besu.ethereum.privacy.PrivateTransaction)7 VersionedPrivateTransaction (org.hyperledger.besu.ethereum.privacy.VersionedPrivateTransaction)7 ArrayList (java.util.ArrayList)5 Log (org.hyperledger.besu.evm.log.Log)5 Collections (java.util.Collections)3 PrivacyGroup (org.hyperledger.besu.enclave.types.PrivacyGroup)3 Vertx (io.vertx.core.Vertx)2 Files (java.nio.file.Files)2 Path (java.nio.file.Path)2 List (java.util.List)2 Optional (java.util.Optional)2 Address (org.hyperledger.besu.datatypes.Address)2 EnclaveConfigurationException (org.hyperledger.besu.enclave.EnclaveConfigurationException)2 EnclaveFactory (org.hyperledger.besu.enclave.EnclaveFactory)2 PrivateStateGenesisAllocator (org.hyperledger.besu.ethereum.privacy.PrivateStateGenesisAllocator)2