/* * 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 org.xwiki.rendering.macro.context; import java.io.StringReader; import org.junit.runner.RunWith; import org.xwiki.bridge.DocumentAccessBridge; import org.xwiki.bridge.DocumentModelBridge; import org.xwiki.component.util.DefaultParameterizedType; import org.xwiki.model.reference.DocumentReference; import org.xwiki.model.reference.DocumentReferenceResolver; import org.xwiki.rendering.block.MacroBlock; import org.xwiki.rendering.block.XDOM; import org.xwiki.rendering.parser.Parser; import org.xwiki.rendering.test.integration.RenderingTestSuite; import org.xwiki.test.annotation.AllComponents; import org.xwiki.test.mockito.MockitoComponentManager; import static org.mockito.Mockito.*; /** * Run all tests found in {@code *.test} files located in the classpath. These {@code *.test} files must follow the * conventions described in {@link org.xwiki.rendering.test.integration.TestDataParser}. * * @version $Id: ddcdb26053af122f61743e7af20191095169b6d5 $ * @since 8.3RC1 */ @RunWith(RenderingTestSuite.class) @AllComponents public class IntegrationTests { @RenderingTestSuite.Initialized public void initialize(MockitoComponentManager componentManager) throws Exception { // For performance reasons we mock some components to avoid having to draw all oldcore components // Macro Reference Resolver DocumentReferenceResolver<String> macroResolver = componentManager.registerMockComponent( new DefaultParameterizedType(null, DocumentReferenceResolver.class, String.class), "macro"); DocumentReference referencedDocumentReference = new DocumentReference("Wiki", "Space", "Page"); when(macroResolver.resolve(eq("Space.Page"), any(MacroBlock.class))).thenReturn(referencedDocumentReference); // Document Access Bridge mock // Simulate the XDOM of the referenced document DocumentAccessBridge dab = componentManager.registerMockComponent(DocumentAccessBridge.class); DocumentModelBridge dmb = mock(DocumentModelBridge.class); when(dab.getDocument(referencedDocumentReference)).thenReturn(dmb); Parser parser = componentManager.getInstance(Parser.class, "xwiki/2.1"); XDOM xdom = parser.parse(new StringReader("= heading1 =\n==heading2==")); when(dmb.getXDOM()).thenReturn(xdom); } }