use of org.eclipse.sirius.web.services.api.document.IDocumentService in project sirius-web by eclipse-sirius.
the class CreateDocumentEventHandlerTests method testCreateTwoDocumentWithSameName.
@Test
public void testCreateTwoDocumentWithSameName() {
IDocumentService documentService = new IDocumentService.NoOp() {
@Override
public Optional<Document> createDocument(String projectId, String name, String content) {
// $NON-NLS-1$ //$NON-NLS-2$
return Optional.of(new Document(UUID.randomUUID(), new Project(UUID.fromString(projectId), "", new Profile(UUID.randomUUID(), "username"), Visibility.PUBLIC), name, content));
}
};
IStereotypeDescriptionService stereotypeDescriptionService = new IStereotypeDescriptionService.NoOp() {
@Override
public Optional<StereotypeDescription> getStereotypeDescriptionById(String editingContextId, UUID stereotypeId) {
// $NON-NLS-1$
StereotypeDescription stereotypeDescription = new StereotypeDescription(stereotypeId, "label", () -> CONTENT);
return Optional.of(stereotypeDescription);
}
};
IServicesMessageService messageService = new NoOpServicesMessageService();
AdapterFactoryEditingDomain editingDomain = new EditingDomainFactory().create();
EditingContext editingContext = new EditingContext(UUID.randomUUID().toString(), editingDomain);
CreateDocumentEventHandler handler = new CreateDocumentEventHandler(documentService, stereotypeDescriptionService, messageService, new SimpleMeterRegistry());
Many<ChangeDescription> changeDescriptionSink = Sinks.many().unicast().onBackpressureBuffer();
changeDescriptionSink.asFlux().subscribe(changeDescription -> {
assertThat(changeDescription.getKind()).isEqualTo(ChangeKind.SEMANTIC_CHANGE);
});
var firstCreateInput = new CreateDocumentInput(UUID.randomUUID(), editingContext.getId(), DOCUMENT_NAME, STEREOTYPE_DESCRIPTION_ID);
assertThat(handler.canHandle(editingContext, firstCreateInput)).isTrue();
One<IPayload> firstPayloadSink = Sinks.one();
handler.handle(firstPayloadSink, changeDescriptionSink, editingContext, firstCreateInput);
IPayload firstPayload = firstPayloadSink.asMono().block();
assertThat(firstPayload).isInstanceOf(CreateDocumentSuccessPayload.class);
var secondCreatedInput = new CreateDocumentInput(UUID.randomUUID(), editingContext.getId(), DOCUMENT_NAME, STEREOTYPE_DESCRIPTION_ID);
assertThat(handler.canHandle(editingContext, secondCreatedInput)).isTrue();
One<IPayload> secondPayloadSink = Sinks.one();
handler.handle(secondPayloadSink, changeDescriptionSink, editingContext, secondCreatedInput);
IPayload secondPayload = firstPayloadSink.asMono().block();
assertThat(secondPayload).isInstanceOf(CreateDocumentSuccessPayload.class);
}
use of org.eclipse.sirius.web.services.api.document.IDocumentService in project sirius-web by eclipse-sirius.
the class CreateDocumentEventHandlerTests method testCreateDocument.
@Test
public void testCreateDocument() {
IDocumentService documentService = new IDocumentService.NoOp() {
@Override
public Optional<Document> createDocument(String projectId, String name, String content) {
// $NON-NLS-1$ //$NON-NLS-2$
return Optional.of(new Document(UUID.randomUUID(), new Project(UUID.fromString(projectId), "", new Profile(UUID.randomUUID(), "username"), Visibility.PUBLIC), name, content));
}
};
IStereotypeDescriptionService stereotypeDescriptionService = new IStereotypeDescriptionService.NoOp() {
@Override
public Optional<StereotypeDescription> getStereotypeDescriptionById(String editingContextId, UUID stereotypeId) {
// $NON-NLS-1$
StereotypeDescription stereotypeDescription = new StereotypeDescription(stereotypeId, "label", () -> CONTENT);
return Optional.of(stereotypeDescription);
}
};
IServicesMessageService messageService = new NoOpServicesMessageService();
CreateDocumentEventHandler handler = new CreateDocumentEventHandler(documentService, stereotypeDescriptionService, messageService, new SimpleMeterRegistry());
var input = new CreateDocumentInput(UUID.randomUUID(), UUID.randomUUID().toString(), DOCUMENT_NAME, STEREOTYPE_DESCRIPTION_ID);
AdapterFactoryEditingDomain editingDomain = new EditingDomainFactory().create();
EditingContext editingContext = new EditingContext(UUID.randomUUID().toString(), editingDomain);
Many<ChangeDescription> changeDescriptionSink = Sinks.many().unicast().onBackpressureBuffer();
One<IPayload> payloadSink = Sinks.one();
assertThat(handler.canHandle(editingContext, input)).isTrue();
handler.handle(payloadSink, changeDescriptionSink, editingContext, input);
ChangeDescription changeDescription = changeDescriptionSink.asFlux().blockFirst();
assertThat(changeDescription.getKind()).isEqualTo(ChangeKind.SEMANTIC_CHANGE);
IPayload payload = payloadSink.asMono().block();
assertThat(payload).isInstanceOf(CreateDocumentSuccessPayload.class);
assertThat(editingDomain.getResourceSet().getResources().size()).isEqualTo(1);
// $NON-NLS-1$
Condition<Object> condition = new Condition<>(adapter -> adapter instanceof DocumentMetadataAdapter, "has an DocumentMetadataAdapter");
assertThat(editingDomain.getResourceSet().getResources().get(0).eAdapters()).areAtLeastOne(condition);
}
use of org.eclipse.sirius.web.services.api.document.IDocumentService in project sirius-web by eclipse-sirius.
the class RenameDocumentEventHandlerTests method testRenameDocument.
@Test
public void testRenameDocument() {
IDocumentService noOpDocumentService = new IDocumentService.NoOp() {
@Override
public Optional<Document> rename(UUID documentId, String newName) {
// $NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
return Optional.of(new Document(documentId, new Project(UUID.randomUUID(), "", new Profile(UUID.randomUUID(), "username"), Visibility.PUBLIC), newName, "noContent"));
}
};
RenameDocumentEventHandler handler = new RenameDocumentEventHandler(noOpDocumentService, new NoOpServicesMessageService(), new SimpleMeterRegistry());
UUID documentId = UUID.randomUUID();
IInput input = new RenameDocumentInput(UUID.randomUUID(), documentId, NEW_NAME);
AdapterFactoryEditingDomain editingDomain = new EditingDomainFactory().create();
DocumentMetadataAdapter adapter = new DocumentMetadataAdapter(OLD_NAME);
Resource resource = new SiriusWebJSONResourceFactoryImpl().createResource(URI.createURI(documentId.toString()));
resource.eAdapters().add(adapter);
editingDomain.getResourceSet().getResources().add(resource);
assertThat(editingDomain.getResourceSet().getResources().size()).isEqualTo(1);
assertThat(adapter.getName()).isEqualTo(OLD_NAME);
IEditingContext editingContext = new EditingContext(UUID.randomUUID().toString(), editingDomain);
Many<ChangeDescription> changeDescriptionSink = Sinks.many().unicast().onBackpressureBuffer();
One<IPayload> payloadSink = Sinks.one();
assertThat(handler.canHandle(editingContext, input)).isTrue();
handler.handle(payloadSink, changeDescriptionSink, editingContext, input);
assertThat(editingDomain.getResourceSet().getResources().size()).isEqualTo(1);
assertThat(adapter.getName()).isEqualTo(NEW_NAME);
ChangeDescription changeDescription = changeDescriptionSink.asFlux().blockFirst();
assertThat(changeDescription.getKind()).isEqualTo(ChangeKind.SEMANTIC_CHANGE);
IPayload payload = payloadSink.asMono().block();
assertThat(payload).isInstanceOf(RenameDocumentSuccessPayload.class);
}
use of org.eclipse.sirius.web.services.api.document.IDocumentService in project sirius-web by eclipse-sirius.
the class DeleteDocumentEventHandlerTests method testDeleteDocument.
@Test
public void testDeleteDocument() {
UUID projectId = UUID.randomUUID();
// $NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
Document document = new Document(UUID.randomUUID(), new Project(projectId, "", new Profile(UUID.randomUUID(), "username"), Visibility.PUBLIC), "name", "content");
IDocumentService documentService = new IDocumentService.NoOp() {
@Override
public Optional<Document> getDocument(UUID documentId) {
return Optional.of(document);
}
};
DeleteDocumentEventHandler handler = new DeleteDocumentEventHandler(documentService, new NoOpServicesMessageService(), new SimpleMeterRegistry());
var input = new DeleteDocumentInput(UUID.randomUUID(), document.getId());
AdapterFactoryEditingDomain editingDomain = new EditingDomainFactory().create();
Resource resource = new SiriusWebJSONResourceFactoryImpl().createResource(URI.createURI(document.getId().toString()));
editingDomain.getResourceSet().getResources().add(resource);
EditingContext editingContext = new EditingContext(UUID.randomUUID().toString(), editingDomain);
Many<ChangeDescription> changeDescriptionSink = Sinks.many().unicast().onBackpressureBuffer();
One<IPayload> payloadSink = Sinks.one();
assertThat(handler.canHandle(editingContext, input)).isTrue();
handler.handle(payloadSink, changeDescriptionSink, editingContext, input);
assertThat(editingDomain.getResourceSet().getResources().size()).isEqualTo(0);
ChangeDescription changeDescription = changeDescriptionSink.asFlux().blockFirst();
assertThat(changeDescription.getKind()).isEqualTo(ChangeKind.SEMANTIC_CHANGE);
IPayload payload = payloadSink.asMono().block();
assertThat(payload).isInstanceOf(DeleteDocumentSuccessPayload.class);
}
use of org.eclipse.sirius.web.services.api.document.IDocumentService in project sirius-web by eclipse-sirius.
the class UploadDocumentEventHandlerTests method simulatesDocumentUpload.
/**
* Simulates a document upload with fake services. The uploaded resource will be put in the given editing domain
* with the documentId as URI.
*
* @param editingDomain
* The editing domain where the uploaded resource will be put
* @param documentId
* The id of the document to upload
* @param resourceBytes
* The content of the document to upload
*/
private void simulatesDocumentUpload(AdapterFactoryEditingDomain editingDomain, UUID documentId, byte[] resourceBytes) {
IDocumentService documentService = new IDocumentService.NoOp() {
@Override
public Optional<Document> createDocument(String projectId, String name, String content) {
// $NON-NLS-1$ //$NON-NLS-2$
return Optional.of(new Document(documentId, new Project(UUID.fromString(projectId), "", new Profile(UUID.randomUUID(), "username"), Visibility.PUBLIC), name, content));
}
};
IServicesMessageService messageService = new NoOpServicesMessageService();
UploadDocumentEventHandler handler = new UploadDocumentEventHandler(documentService, messageService, new SimpleMeterRegistry());
UploadFile file = new UploadFile(FILE_NAME, new ByteArrayInputStream(resourceBytes));
var input = new UploadDocumentInput(UUID.randomUUID(), UUID.randomUUID().toString(), file);
IEditingContext editingContext = new EditingContext(UUID.randomUUID().toString(), editingDomain);
Many<ChangeDescription> changeDescriptionSink = Sinks.many().unicast().onBackpressureBuffer();
One<IPayload> payloadSink = Sinks.one();
assertThat(handler.canHandle(editingContext, input)).isTrue();
handler.handle(payloadSink, changeDescriptionSink, editingContext, input);
ChangeDescription changeDescription = changeDescriptionSink.asFlux().blockFirst();
assertThat(changeDescription.getKind()).isEqualTo(ChangeKind.SEMANTIC_CHANGE);
IPayload payload = payloadSink.asMono().block();
assertThat(payload).isInstanceOf(UploadDocumentSuccessPayload.class);
}
Aggregations