/* * 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.celements.web.plugin.cmd; import static org.easymock.EasyMock.*; import static org.junit.Assert.*; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.xwiki.component.descriptor.ComponentDescriptor; import org.xwiki.model.reference.DocumentReference; import com.celements.common.test.AbstractBridgedComponentTestCase; import com.celements.emptycheck.service.IEmptyCheckRole; import com.celements.navigation.TreeNode; import com.celements.navigation.service.ITreeNodeService; import com.xpn.xwiki.XWiki; import com.xpn.xwiki.XWikiContext; import com.xpn.xwiki.XWikiException; import com.xpn.xwiki.doc.XWikiDocument; import com.xpn.xwiki.web.Utils; @Deprecated public class EmptyCheckCommandTest extends AbstractBridgedComponentTestCase { private XWikiContext context; private XWiki xwiki; private EmptyCheckCommand emptyChildCheckCmd; private ITreeNodeService treeNodeService; private ComponentDescriptor<ITreeNodeService> treeNodeServiceDesc; private ITreeNodeService savedTreeNodeServiceDesc; @Before public void setUp_EmptyCheckCommandTest() throws Exception { context = getContext(); xwiki = getWikiMock(); emptyChildCheckCmd = new EmptyCheckCommand(); treeNodeService = createMockAndAddToDefault(ITreeNodeService.class); treeNodeServiceDesc = getComponentManager().getComponentDescriptor(ITreeNodeService.class, "default"); savedTreeNodeServiceDesc = Utils.getComponent(ITreeNodeService.class); getComponentManager().unregisterComponent(ITreeNodeService.class, "default"); getComponentManager().registerComponent(treeNodeServiceDesc, treeNodeService); } @After public void shutdown_EmptyCheckCommandTest() throws Exception { getComponentManager().unregisterComponent(ITreeNodeService.class, "default"); getComponentManager().registerComponent(treeNodeServiceDesc, savedTreeNodeServiceDesc); } @Test @Deprecated public void testIsEmptyRTEDocument_empty() { assertTrue(emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc(""))); } @Test @Deprecated public void testIsEmptyRTEDocument_cel2_standard_oldRTE_2Space() { assertTrue("Lonly non breaking spaces (2) with break should be" + " treated as empty", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc("<p>  </p>"))); } @Test @Deprecated public void testIsEmptyRTEDocument_cel2_standard_oldRTE_1Break() { assertTrue("Lonly non breaking spaces (2) with break should be" + " treated as empty", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc("<p><br /></p>"))); } @Test @Deprecated public void testIsEmptyRTEDocument_manualizer_example() { assertTrue("Paragraph with span surrounding break should be" + " treated as empty", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc( "<p><span style=\"line-height: normal; font-size: 10px;\"><br /></span></p>"))); } @Test @Deprecated public void testIsEmptyRTEDocument_cel2_standard_oldRTE_2Space1Break() { assertTrue("Lonly non breaking spaces (2) with break should be" + " treated as empty", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc("<p>   <br /></p>"))); } @Test @Deprecated public void testIsEmptyRTEDocument_cel2_standard_oldRTE_3Space1Break() { assertTrue("Lonly non breaking spaces (3) with break should be" + " treated as empty", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc("<p>   <br /></p>"))); } @Test @Deprecated public void testIsEmptyRTEDocument_cel2_standard_oldRTE_1Space2Break() { assertTrue("Lonly non breaking spaces with break (2) should be" + " treated as empty", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc("<p> <br /><br /></p>"))); } @Test @Deprecated public void testIsEmptyRTEDocument_cel2_standard_oldRTE_REGULAR_TEXT() { assertFalse("Regular Text (2) should not be treated as empty.", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc("<p>adsf   <br />sadf</p>"))); } @Test @Deprecated public void testIsEmptyRTEDocument_nbsp() { assertTrue("Lonly non breaking spaces should be treated as empty", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc(" "))); assertTrue("Non breaking spaces in a paragraph should be treated as empty", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc("<p> </p>"))); assertTrue("Non breaking spaces in a paragraph with white spaces" + " should be treated as empty", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc( "<p>   </p>"))); assertFalse("Regular Text should not be treated as empty.", emptyChildCheckCmd.isEmptyRTEDocument(getTestDoc("<p>adsf   </p>"))); } @Test @Deprecated public void testGetNextNonEmptyChildren_notEmpty() throws Exception { DocumentReference documentRef = new DocumentReference(context.getDatabase(), "mySpace", "MyDoc"); XWikiDocument myXdoc = new XWikiDocument(documentRef); myXdoc.setContent("test content not empty"); expect(xwiki.getDocument(eq(documentRef), same(context))).andReturn(myXdoc).once(); expect(xwiki.getXWikiPreference(eq(IEmptyCheckRole.EMPTYCHECK_MODULS_PREF_NAME), eq( "celements.emptycheckModuls"), eq("default"), same(context))).andReturn( "default").anyTimes(); replayDefault(); assertEquals(documentRef, emptyChildCheckCmd.getNextNonEmptyChildren(documentRef)); verifyDefault(); } @Test @Deprecated public void testGetNextNonEmptyChildren_empty_but_noChildren() throws Exception { DocumentReference emptyDocRef = new DocumentReference(context.getDatabase(), "mySpace", "MyEmptyDoc"); createEmptyDoc(emptyDocRef); List<TreeNode> noChildrenList = Collections.emptyList(); expect(treeNodeService.getSubNodesForParent(eq(emptyDocRef), eq(""))).andReturn( noChildrenList).once(); expect(xwiki.getXWikiPreference(eq(IEmptyCheckRole.EMPTYCHECK_MODULS_PREF_NAME), eq( "celements.emptycheckModuls"), eq("default"), same(context))).andReturn( "default").anyTimes(); replayDefault(); assertEquals(emptyDocRef, emptyChildCheckCmd.getNextNonEmptyChildren(emptyDocRef)); verifyDefault(); } @Test @Deprecated public void testGetNextNonEmptyChildren_empty_with_nonEmptyChildren() throws Exception { DocumentReference emptyDocRef = new DocumentReference(context.getDatabase(), "mySpace", "MyEmptyDoc"); createEmptyDoc(emptyDocRef); List<TreeNode> childrenList = Arrays.asList(new TreeNode(new DocumentReference( context.getDatabase(), "mySpace", "myChild"), emptyDocRef, 0), new TreeNode( new DocumentReference(context.getDatabase(), "mySpace", "myChild2"), emptyDocRef, 1)); expect(treeNodeService.getSubNodesForParent(eq(emptyDocRef), eq(""))).andReturn( childrenList).once(); DocumentReference expectedChildDocRef = new DocumentReference(context.getDatabase(), "mySpace", "myChild"); XWikiDocument childXdoc = new XWikiDocument(expectedChildDocRef); childXdoc.setContent("non empty child content"); expect(xwiki.getDocument(eq(expectedChildDocRef), same(context))).andReturn(childXdoc).once(); expect(xwiki.getXWikiPreference(eq(IEmptyCheckRole.EMPTYCHECK_MODULS_PREF_NAME), eq( "celements.emptycheckModuls"), eq("default"), same(context))).andReturn( "default").anyTimes(); replayDefault(); assertEquals(expectedChildDocRef, emptyChildCheckCmd.getNextNonEmptyChildren(emptyDocRef)); verifyDefault(); } @Test @Deprecated public void testGetNextNonEmptyChildren_empty_recurse_on_EmptyChildren() throws Exception { DocumentReference emptyDocRef = new DocumentReference(context.getDatabase(), "mySpace", "MyEmptyDoc"); createEmptyDoc(emptyDocRef); List<TreeNode> childrenList = Arrays.asList(new TreeNode(new DocumentReference( context.getDatabase(), "mySpace", "myChild"), emptyDocRef, 0), new TreeNode( new DocumentReference(context.getDatabase(), "mySpace", "myChild2"), emptyDocRef, 1)); expect(treeNodeService.getSubNodesForParent(eq(emptyDocRef), eq(""))).andReturn( childrenList).once(); DocumentReference childDocRef = new DocumentReference(context.getDatabase(), "mySpace", "myChild"); createEmptyDoc(childDocRef); List<TreeNode> childrenList2 = Arrays.asList(new TreeNode(new DocumentReference( context.getDatabase(), "mySpace", "myChildChild"), emptyDocRef, 0), new TreeNode( new DocumentReference(context.getDatabase(), "mySpace", "myChildChild2"), emptyDocRef, 1)); expect(treeNodeService.getSubNodesForParent(eq(childDocRef), eq(""))).andReturn( childrenList2).once(); DocumentReference expectedChildDocRef = new DocumentReference(context.getDatabase(), "mySpace", "myChildChild"); XWikiDocument childChildXdoc = new XWikiDocument(expectedChildDocRef); childChildXdoc.setContent("non empty child content"); expect(xwiki.getDocument(eq(expectedChildDocRef), same(context))).andReturn( childChildXdoc).once(); expect(xwiki.getXWikiPreference(eq(IEmptyCheckRole.EMPTYCHECK_MODULS_PREF_NAME), eq( "celements.emptycheckModuls"), eq("default"), same(context))).andReturn( "default").anyTimes(); replayDefault(); assertEquals(expectedChildDocRef, emptyChildCheckCmd.getNextNonEmptyChildren(emptyDocRef)); verifyDefault(); } @Test @Deprecated public void testGetNextNonEmptyChildren_empty_recurse_on_EmptyChildren_reconize_loop() throws Exception { DocumentReference emptyDocRef = new DocumentReference(context.getDatabase(), "mySpace", "MyEmptyDoc"); createEmptyDoc(emptyDocRef); DocumentReference childDocRef = new DocumentReference(context.getDatabase(), "mySpace", "myChild"); createEmptyDoc(childDocRef); DocumentReference child2DocRef = new DocumentReference(context.getDatabase(), "mySpace", "myChild2"); createEmptyDoc(child2DocRef); List<TreeNode> childrenList = Arrays.asList(new TreeNode(childDocRef, emptyDocRef, 0), new TreeNode(child2DocRef, emptyDocRef, 1)); // if called more than once the recursion detection is very likely broken! expect(treeNodeService.getSubNodesForParent(eq(emptyDocRef), eq(""))).andReturn( childrenList).once(); DocumentReference childChildDocRef = new DocumentReference(context.getDatabase(), "mySpace", "myChildChild"); createEmptyDoc(childChildDocRef); DocumentReference childChild2DocRef = new DocumentReference(context.getDatabase(), "mySpace", "myChildChild2"); createEmptyDoc(childChild2DocRef); List<TreeNode> childrenList2 = Arrays.asList(new TreeNode(childChildDocRef, emptyDocRef, 0), new TreeNode(childChild2DocRef, emptyDocRef, 1)); expect(treeNodeService.getSubNodesForParent(eq(childDocRef), eq(""))).andReturn( childrenList2).once(); List<TreeNode> childrenList3 = Arrays.asList(new TreeNode(new DocumentReference( context.getDatabase(), "mySpace", "MyEmptyDoc"), emptyDocRef, 0)); expect(treeNodeService.getSubNodesForParent(eq(childChildDocRef), eq(""))).andReturn( childrenList3).once(); expect(treeNodeService.getSubNodesForParent(eq(child2DocRef), eq(""))).andReturn( Collections.<TreeNode>emptyList()).once(); expect(treeNodeService.getSubNodesForParent(eq(childChild2DocRef), eq(""))).andReturn( Collections.<TreeNode>emptyList()).once(); expect(xwiki.getXWikiPreference(eq(IEmptyCheckRole.EMPTYCHECK_MODULS_PREF_NAME), eq( "celements.emptycheckModuls"), eq("default"), same(context))).andReturn( "default").anyTimes(); replayDefault(); assertEquals(emptyDocRef, emptyChildCheckCmd.getNextNonEmptyChildren(emptyDocRef)); verifyDefault(); } // ***************************************************************** // * H E L P E R - M E T H O D S * // *****************************************************************/ private XWikiDocument createEmptyDoc(DocumentReference emptyDocRef) throws XWikiException { XWikiDocument myXdoc = createMockAndAddToDefault(XWikiDocument.class); XWikiDocument myXTdoc = new XWikiDocument(emptyDocRef); myXTdoc.setDefaultLanguage("de"); myXTdoc.setLanguage("fr"); expect(myXdoc.getContent()).andReturn("").atLeastOnce(); expect(myXdoc.getTranslatedDocument(eq(""), same(context))).andReturn(myXdoc).anyTimes(); expect(myXdoc.getTranslatedDocument(eq("de"), same(context))).andReturn(myXdoc).anyTimes(); expect(myXdoc.getTranslatedDocument(eq("fr"), same(context))).andReturn(myXTdoc).anyTimes(); expect(myXdoc.getLanguage()).andReturn("").anyTimes(); expect(myXdoc.getDefaultLanguage()).andReturn("de").anyTimes(); expect(xwiki.getDocument(eq(emptyDocRef), same(context))).andReturn(myXdoc).atLeastOnce(); return myXdoc; } private XWikiDocument getTestDoc(String inStr) { DocumentReference testDocRef = new DocumentReference("xwiki", "testSpace", "testDoc"); XWikiDocument doc = new XWikiDocument(testDocRef); doc.setContent(inStr); return doc; } }