use of org.xwiki.bridge.event.DocumentsDeletingEvent in project xwiki-platform by xwiki.
the class AbstractEntityJobWithChecks method runInternal.
@Override
protected void runInternal() throws Exception {
progressManager.pushLevelProgress(2, this);
try {
Collection<EntityReference> entityReferences = this.request.getEntityReferences();
if (entityReferences != null) {
// Get the list of concerned entities
progressManager.startStep(this);
getEntities(entityReferences);
// Send the event
DocumentsDeletingEvent event = new DocumentsDeletingEvent();
observationManager.notify(event, this, concernedEntities);
// Stop the job if some listener has canceled the action
if (event.isCanceled()) {
return;
}
// Process
progressManager.startStep(this);
setContextUser();
process(entityReferences);
}
} finally {
progressManager.popLevelProgress(this);
}
}
use of org.xwiki.bridge.event.DocumentsDeletingEvent in project xwiki-platform by xwiki.
the class DocumentsDeletingListenerTest method testCancel.
@Test
public void testCancel() throws Exception {
Request request = mock(Request.class);
Job job = mock(Job.class);
JobStatus status = mock(JobStatus.class);
when(job.getRequest()).thenReturn(request);
when(request.isInteractive()).thenReturn(true);
when(job.getStatus()).thenReturn(status);
Map<EntityReference, EntitySelection> concernedEntities = new HashMap<>();
DocumentReference doc1 = new DocumentReference("a", "b", "c1");
concernedEntities.put(doc1, new EntitySelection(doc1));
XarInstalledExtension ext1 = mock(XarInstalledExtension.class);
when(ext1.getId()).thenReturn(new ExtensionId("ext1"));
when(repository.getXarInstalledExtensions(doc1)).thenReturn(Arrays.asList(ext1));
InterruptedException e = new InterruptedException();
doThrow(e).when(status).ask(any(), anyLong(), any());
// Test
DocumentsDeletingEvent event = mock(DocumentsDeletingEvent.class);
mocker.getComponentUnderTest().onEvent(event, job, concernedEntities);
// Check
verify(status, times(1)).ask(any(), eq(5L), eq(TimeUnit.MINUTES));
verify(event).cancel(eq("Question has been interrupted."));
verify(mocker.getMockedLogger()).warn("Confirm question has been interrupted.");
}
use of org.xwiki.bridge.event.DocumentsDeletingEvent in project xwiki-platform by xwiki.
the class DocumentsDeletingListenerTest method test.
@Test
public void test() throws Exception {
Request request = mock(Request.class);
Job job = mock(Job.class);
JobStatus status = mock(JobStatus.class);
when(job.getRequest()).thenReturn(request);
when(request.isInteractive()).thenReturn(true);
when(job.getStatus()).thenReturn(status);
Map<EntityReference, EntitySelection> concernedEntities = new HashMap<>();
DocumentReference doc1 = new DocumentReference("a", "b", "c1");
DocumentReference doc2 = new DocumentReference("a", "b", "c2");
DocumentReference doc3 = new DocumentReference("a", "b", "c3");
concernedEntities.put(doc1, new EntitySelection(doc1));
concernedEntities.put(doc2, new EntitySelection(doc2));
concernedEntities.put(doc3, new EntitySelection(doc3));
XarInstalledExtension ext1 = mock(XarInstalledExtension.class);
XarInstalledExtension ext2 = mock(XarInstalledExtension.class);
when(ext1.getId()).thenReturn(new ExtensionId("ext1"));
when(ext2.getId()).thenReturn(new ExtensionId("ext2"));
when(repository.getXarInstalledExtensions(doc1)).thenReturn(Arrays.asList(ext1, ext2));
when(repository.getXarInstalledExtensions(doc2)).thenReturn(Collections.emptyList());
when(repository.getXarInstalledExtensions(doc3)).thenReturn(Arrays.asList(ext2));
doAnswer(invocationOnMock -> {
ExtensionBreakingQuestion question = invocationOnMock.getArgument(0);
assertEquals(concernedEntities, question.getConcernedEntities());
// Ext 1
assertEquals(1, question.getExtension("ext1").getPages().size());
assertTrue(question.getExtension("ext1").getPages().contains(concernedEntities.get(doc1)));
// Ext 2
assertEquals(2, question.getExtension("ext2").getPages().size());
assertTrue(question.getExtension("ext2").getPages().contains(concernedEntities.get(doc1)));
assertTrue(question.getExtension("ext2").getPages().contains(concernedEntities.get(doc3)));
// Free pages
assertEquals(1, question.getFreePages().size());
assertTrue(question.getFreePages().contains(concernedEntities.get(doc2)));
// Assert nothing is select by default
for (EntitySelection selection : question.getConcernedEntities().values()) {
assertFalse(selection.isSelected());
}
return null;
}).when(status).ask(any(), anyLong(), any());
// Test
DocumentsDeletingEvent event = new DocumentsDeletingEvent();
mocker.getComponentUnderTest().onEvent(event, job, concernedEntities);
// Check
verify(status, times(1)).ask(any(), eq(5L), eq(TimeUnit.MINUTES));
}
use of org.xwiki.bridge.event.DocumentsDeletingEvent in project xwiki-platform by xwiki.
the class DocumentsDeletingListenerTest method testWhenNonInteractive.
@Test
public void testWhenNonInteractive() throws Exception {
Request request = mock(Request.class);
Job job = mock(Job.class);
when(job.getRequest()).thenReturn(request);
when(request.isInteractive()).thenReturn(false);
JobStatus status = mock(JobStatus.class);
when(job.getStatus()).thenReturn(status);
// Test
DocumentsDeletingEvent event = new DocumentsDeletingEvent();
mocker.getComponentUnderTest().onEvent(event, job, null);
// Verify
verify(mocker.getMockedLogger()).warn("XAR Extension Documents Deleting Listener will not check the document in non-interactive mode.");
verifyZeroInteractions(status);
verifyZeroInteractions(repository);
}
Aggregations