Search in sources :

Example 1 with DocumentsDeletingEvent

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);
    }
}
Also used : EntityReference(org.xwiki.model.reference.EntityReference) DocumentsDeletingEvent(org.xwiki.bridge.event.DocumentsDeletingEvent)

Example 2 with DocumentsDeletingEvent

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.");
}
Also used : JobStatus(org.xwiki.job.event.status.JobStatus) HashMap(java.util.HashMap) XarInstalledExtension(org.xwiki.extension.xar.internal.repository.XarInstalledExtension) EntitySelection(org.xwiki.refactoring.job.question.EntitySelection) Request(org.xwiki.job.Request) EntityReference(org.xwiki.model.reference.EntityReference) ExtensionId(org.xwiki.extension.ExtensionId) Job(org.xwiki.job.Job) DocumentReference(org.xwiki.model.reference.DocumentReference) DocumentsDeletingEvent(org.xwiki.bridge.event.DocumentsDeletingEvent) Test(org.junit.Test)

Example 3 with DocumentsDeletingEvent

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));
}
Also used : JobStatus(org.xwiki.job.event.status.JobStatus) HashMap(java.util.HashMap) XarInstalledExtension(org.xwiki.extension.xar.internal.repository.XarInstalledExtension) EntitySelection(org.xwiki.refactoring.job.question.EntitySelection) Request(org.xwiki.job.Request) EntityReference(org.xwiki.model.reference.EntityReference) ExtensionBreakingQuestion(org.xwiki.extension.xar.internal.delete.question.ExtensionBreakingQuestion) ExtensionId(org.xwiki.extension.ExtensionId) Job(org.xwiki.job.Job) DocumentReference(org.xwiki.model.reference.DocumentReference) DocumentsDeletingEvent(org.xwiki.bridge.event.DocumentsDeletingEvent) Test(org.junit.Test)

Example 4 with DocumentsDeletingEvent

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);
}
Also used : JobStatus(org.xwiki.job.event.status.JobStatus) Request(org.xwiki.job.Request) Job(org.xwiki.job.Job) DocumentsDeletingEvent(org.xwiki.bridge.event.DocumentsDeletingEvent) Test(org.junit.Test)

Aggregations

DocumentsDeletingEvent (org.xwiki.bridge.event.DocumentsDeletingEvent)4 Test (org.junit.Test)3 Job (org.xwiki.job.Job)3 Request (org.xwiki.job.Request)3 JobStatus (org.xwiki.job.event.status.JobStatus)3 EntityReference (org.xwiki.model.reference.EntityReference)3 HashMap (java.util.HashMap)2 ExtensionId (org.xwiki.extension.ExtensionId)2 XarInstalledExtension (org.xwiki.extension.xar.internal.repository.XarInstalledExtension)2 DocumentReference (org.xwiki.model.reference.DocumentReference)2 EntitySelection (org.xwiki.refactoring.job.question.EntitySelection)2 ExtensionBreakingQuestion (org.xwiki.extension.xar.internal.delete.question.ExtensionBreakingQuestion)1