/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package com.xpn.xwiki.internal.event; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.xwiki.bridge.event.DocumentCreatedEvent; import org.xwiki.bridge.event.DocumentDeletedEvent; import org.xwiki.bridge.event.DocumentUpdatedEvent; import org.xwiki.component.manager.ComponentLookupException; import org.xwiki.model.reference.DocumentReference; import org.xwiki.observation.ObservationManager; import org.xwiki.observation.event.Event; import org.xwiki.test.mockito.MockitoComponentMockingRule; import com.xpn.xwiki.doc.XWikiDocument; import com.xpn.xwiki.objects.classes.BaseClass; import com.xpn.xwiki.test.MockitoOldcoreRule; import com.xpn.xwiki.test.reference.ReferenceComponentList; import static org.mockito.ArgumentMatchers.eq; import static org.mockito.ArgumentMatchers.same; import static org.mockito.Mockito.verify; /** * Validate {@link XClassPropertyEventGeneratorListener}. * * @version $Id: 71efee07691d92fcfcb8de59ebcc46ac200f2820 $ */ @ReferenceComponentList public class XClassPropertyEventGeneratorListenerTest { public MockitoComponentMockingRule<XClassPropertyEventGeneratorListener> mocker = new MockitoComponentMockingRule<XClassPropertyEventGeneratorListener>( XClassPropertyEventGeneratorListener.class); @Rule public MockitoOldcoreRule oldcore = new MockitoOldcoreRule(mocker); private ObservationManager mockObservation; private XWikiDocument document; private XWikiDocument documentOrigin; private BaseClass xclass; private BaseClass xclassOrigin; @Before public void before() throws Exception { this.document = new XWikiDocument(new DocumentReference("wiki", "space", "page")); this.documentOrigin = new XWikiDocument(this.document.getDocumentReference()); this.document.setOriginalDocument(this.documentOrigin); this.xclass = this.document.getXClass(); this.xclassOrigin = this.documentOrigin.getXClass(); this.mockObservation = this.mocker.getInstance(ObservationManager.class); } @Test public void testAddDocument() throws ComponentLookupException { this.xclass.addTextField("property", "Property", 30); final Event event = new XClassPropertyAddedEvent(this.xclass.getField("property").getReference()); this.mocker.getComponentUnderTest().onEvent(new DocumentCreatedEvent(this.document.getDocumentReference()), this.document, this.oldcore.getXWikiContext()); // Make sure the listener generated a xobject added event verify(this.mockObservation).notify(eq(event), same(this.document), same(this.oldcore.getXWikiContext())); } @Test public void testDeleteDocument() throws ComponentLookupException { this.xclassOrigin.addTextField("property", "Property", 30); final Event event = new XClassPropertyDeletedEvent(this.xclassOrigin.getField("property").getReference()); this.mocker.getComponentUnderTest().onEvent(new DocumentDeletedEvent(this.document.getDocumentReference()), this.document, this.oldcore.getXWikiContext()); // Make sure the listener generated a xobject added event verify(this.mockObservation).notify(eq(event), same(this.document), same(this.oldcore.getXWikiContext())); } @Test public void testModifiedDocumentXClassPropertyAdded() throws ComponentLookupException { this.xclass.addTextField("property", "Property", 30); final Event event = new XClassPropertyAddedEvent(this.xclass.getField("property").getReference()); this.mocker.getComponentUnderTest().onEvent(new DocumentUpdatedEvent(this.document.getDocumentReference()), this.document, this.oldcore.getXWikiContext()); // Make sure the listener generated a xobject added event verify(this.mockObservation).notify(eq(event), same(this.document), same(this.oldcore.getXWikiContext())); } @Test public void testModifiedDocumentXClassPropertyDeleted() throws ComponentLookupException { this.xclassOrigin.addTextField("property", "Property", 30); final Event event = new XClassPropertyDeletedEvent(this.xclassOrigin.getField("property").getReference()); this.mocker.getComponentUnderTest().onEvent(new DocumentUpdatedEvent(this.document.getDocumentReference()), this.document, this.oldcore.getXWikiContext()); // Make sure the listener generated a xobject added event verify(this.mockObservation).notify(eq(event), same(this.document), same(this.oldcore.getXWikiContext())); } @Test public void testModifiedDocumentXClassPropertyModified() throws ComponentLookupException { this.xclassOrigin.addTextField("property", "Property", 30); this.xclass.addTextField("property", "New Property", 30); final Event event = new XClassPropertyUpdatedEvent(this.xclassOrigin.getField("property").getReference()); this.mocker.getComponentUnderTest().onEvent(new DocumentUpdatedEvent(this.document.getDocumentReference()), this.document, this.oldcore.getXWikiContext()); // Make sure the listener generated a xobject added event verify(this.mockObservation).notify(eq(event), same(this.document), same(this.oldcore.getXWikiContext())); } }