use of com.quorum.tessera.enclave.PrivacyGroup in project tessera by ConsenSys.
the class TransactionResource4 method send.
@POST
@Path("send")
@Consumes({ MIME_TYPE_JSON_4 })
@Produces({ MIME_TYPE_JSON_4 })
public Response send(@NotNull @Valid @PrivacyValid final SendRequest sendRequest) {
final PublicKey sender = Optional.ofNullable(sendRequest.getFrom()).map(base64Decoder::decode).map(PublicKey::from).orElseGet(transactionManager::defaultPublicKey);
final Optional<PrivacyGroup.Id> privacyGroupId = Optional.ofNullable(sendRequest.getPrivacyGroupId()).map(PrivacyGroup.Id::fromBase64String);
final List<PublicKey> recipientList = privacyGroupId.map(privacyGroupManager::retrievePrivacyGroup).map(PrivacyGroup::getMembers).orElse(Stream.of(sendRequest).filter(sr -> Objects.nonNull(sr.getTo())).flatMap(s -> Stream.of(s.getTo())).map(base64Decoder::decode).map(PublicKey::from).collect(Collectors.toList()));
final Set<MessageHash> affectedTransactions = Stream.ofNullable(sendRequest.getAffectedContractTransactions()).flatMap(Arrays::stream).map(base64Decoder::decode).map(MessageHash::new).collect(Collectors.toSet());
final byte[] execHash = Optional.ofNullable(sendRequest.getExecHash()).map(String::getBytes).orElse(new byte[0]);
final PrivacyMode privacyMode = PrivacyMode.fromFlag(sendRequest.getPrivacyFlag());
final Set<PublicKey> mandatoryRecipients = Stream.ofNullable(sendRequest.getMandatoryRecipients()).flatMap(Arrays::stream).map(base64Decoder::decode).map(PublicKey::from).collect(Collectors.toUnmodifiableSet());
final com.quorum.tessera.transaction.SendRequest.Builder requestBuilder = com.quorum.tessera.transaction.SendRequest.Builder.create().withRecipients(recipientList).withSender(sender).withPayload(sendRequest.getPayload()).withExecHash(execHash).withPrivacyMode(privacyMode).withAffectedContractTransactions(affectedTransactions).withMandatoryRecipients(mandatoryRecipients);
privacyGroupId.ifPresent(requestBuilder::withPrivacyGroupId);
final com.quorum.tessera.transaction.SendResponse response = transactionManager.send(requestBuilder.build());
final String encodedKey = Optional.of(response).map(com.quorum.tessera.transaction.SendResponse::getTransactionHash).map(MessageHash::getHashBytes).map(base64Encoder::encodeToString).get();
final String[] managedParties = Optional.of(response).map(com.quorum.tessera.transaction.SendResponse::getManagedParties).orElse(Collections.emptySet()).stream().map(PublicKey::encodeToBase64).toArray(String[]::new);
final SendResponse sendResponse = Optional.of(response).map(com.quorum.tessera.transaction.SendResponse::getTransactionHash).map(MessageHash::getHashBytes).map(base64Encoder::encodeToString).map(messageHash -> new SendResponse(messageHash, managedParties, sender.encodeToBase64())).get();
final URI location = UriBuilder.fromPath("transaction").path(URLEncoder.encode(encodedKey, StandardCharsets.UTF_8)).build();
return Response.created(location).entity(sendResponse).build();
}
use of com.quorum.tessera.enclave.PrivacyGroup in project tessera by ConsenSys.
the class PrivacyGroupManagerImplTest method testCreateResidentGroup.
@Test
public void testCreateResidentGroup() {
when(privacyGroupUtil.generateLookupId(anyList())).thenReturn("lookup".getBytes());
when(privacyGroupUtil.encode(any())).thenReturn("encoded".getBytes());
when(privacyGroupDAO.retrieve("generatedId".getBytes())).thenReturn(Optional.empty());
final PrivacyGroup privacyGroup = privacyGroupManager.saveResidentGroup("name", "desc", List.of(localKey));
// Verify entity being saved has the correct values
ArgumentCaptor<PrivacyGroupEntity> argCaptor = ArgumentCaptor.forClass(PrivacyGroupEntity.class);
verify(privacyGroupDAO).update(argCaptor.capture());
PrivacyGroupEntity savedEntity = argCaptor.getValue();
assertThat(savedEntity).isNotNull();
assertThat(savedEntity.getId()).isEqualTo("name".getBytes());
assertThat(savedEntity.getLookupId()).isEqualTo("lookup".getBytes());
assertThat(savedEntity.getData()).isEqualTo("encoded".getBytes());
// Verify generated privacy group has the correct values
assertThat(privacyGroup).isNotNull();
assertThat(privacyGroup.getId().getBytes()).isEqualTo("name".getBytes());
assertThat(privacyGroup.getName()).isEqualTo("name");
assertThat(privacyGroup.getDescription()).isEqualTo("desc");
assertThat(privacyGroup.getMembers()).containsExactly(localKey);
assertThat(privacyGroup.getType()).isEqualTo(PrivacyGroup.Type.RESIDENT);
assertThat(privacyGroup.getState()).isEqualTo(PrivacyGroup.State.ACTIVE);
}
use of com.quorum.tessera.enclave.PrivacyGroup in project tessera by ConsenSys.
the class PrivacyGroupManagerImplTest method testDeleteDeletedPrivacyGroup.
@Test
public void testDeleteDeletedPrivacyGroup() {
PrivacyGroupEntity retrievedEt = mock(PrivacyGroupEntity.class);
when(retrievedEt.getData()).thenReturn("data".getBytes());
PrivacyGroup mockPG = mock(PrivacyGroup.class);
when(mockPG.getId()).thenReturn(PrivacyGroup.Id.fromBytes("id".getBytes()));
when(mockPG.getMembers()).thenReturn(Collections.emptyList());
when(mockPG.getState()).thenReturn(PrivacyGroup.State.DELETED);
when(mockPG.getType()).thenReturn(PrivacyGroup.Type.PANTHEON);
when(privacyGroupDAO.retrieve("id".getBytes())).thenReturn(Optional.of(retrievedEt));
when(privacyGroupUtil.decode("data".getBytes())).thenReturn(mockPG);
when(privacyGroupUtil.encode(any())).thenReturn("deletedData".getBytes());
assertThatThrownBy(() -> privacyGroupManager.deletePrivacyGroup(mock(PublicKey.class), PrivacyGroup.Id.fromBytes("id".getBytes()))).isInstanceOf(PrivacyGroupNotFoundException.class);
verify(privacyGroupDAO).retrieve("id".getBytes());
}
use of com.quorum.tessera.enclave.PrivacyGroup in project tessera by ConsenSys.
the class PrivacyGroupManagerImplTest method testRetrievePrivacyGroupDeleted.
@Test
public void testRetrievePrivacyGroupDeleted() {
final PrivacyGroup.Id id = PrivacyGroup.Id.fromBytes("id".getBytes());
final PrivacyGroupEntity mockResult = mock(PrivacyGroupEntity.class);
final PrivacyGroup mockPrivacyGroup = mock(PrivacyGroup.class);
when(mockPrivacyGroup.getState()).thenReturn(PrivacyGroup.State.DELETED);
when(mockResult.getData()).thenReturn("data".getBytes());
when(privacyGroupUtil.decode("data".getBytes())).thenReturn(mockPrivacyGroup);
when(privacyGroupDAO.retrieve("id".getBytes())).thenReturn(Optional.of(mockResult));
try {
privacyGroupManager.retrievePrivacyGroup(id);
failBecauseExceptionWasNotThrown(any());
} catch (Exception ex) {
assertThat(ex).isInstanceOf(PrivacyGroupNotFoundException.class);
}
verify(privacyGroupDAO).retrieve("id".getBytes());
}
use of com.quorum.tessera.enclave.PrivacyGroup in project tessera by ConsenSys.
the class PrivacyGroupManagerImplTest method testFindPrivacyGroup.
@Test
public void testFindPrivacyGroup() {
final PrivacyGroupEntity et1 = mock(PrivacyGroupEntity.class);
when(et1.getData()).thenReturn("data1".getBytes());
final PrivacyGroupEntity et2 = mock(PrivacyGroupEntity.class);
when(et2.getData()).thenReturn("data2".getBytes());
final PrivacyGroupEntity et3 = mock(PrivacyGroupEntity.class);
when(et3.getData()).thenReturn("data3".getBytes());
final List<PrivacyGroupEntity> dbResult = List.of(et1, et2, et3);
final PrivacyGroup pg1 = mock(PrivacyGroup.class);
final PrivacyGroup pg2 = mock(PrivacyGroup.class);
final PrivacyGroup pg3 = mock(PrivacyGroup.class);
when(pg1.getState()).thenReturn(PrivacyGroup.State.DELETED);
when(pg2.getState()).thenReturn(PrivacyGroup.State.ACTIVE);
when(pg3.getState()).thenReturn(PrivacyGroup.State.ACTIVE);
when(privacyGroupDAO.findByLookupId("lookup".getBytes())).thenReturn(dbResult);
when(privacyGroupUtil.generateLookupId(anyList())).thenReturn("lookup".getBytes());
when(privacyGroupUtil.decode("data1".getBytes())).thenReturn(pg1);
when(privacyGroupUtil.decode("data2".getBytes())).thenReturn(pg2);
when(privacyGroupUtil.decode("data3".getBytes())).thenReturn(pg3);
final List<PrivacyGroup> privacyGroups = privacyGroupManager.findPrivacyGroup(List.of());
assertThat(privacyGroups).isNotEmpty();
assertThat(privacyGroups).contains(pg2, pg3);
verify(privacyGroupDAO).findByLookupId("lookup".getBytes());
}
Aggregations