/* * 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.model.reference; import java.util.regex.Pattern; import org.junit.Assert; import org.junit.Test; import org.xwiki.model.EntityType; import org.xwiki.model.reference.DocumentReference; import org.xwiki.model.reference.EntityReference; /** * Validate {@link RegexEntityReference} class. * * @version $Id: e34a4fdb2f5fbbdc180e533da39b3b9e4e6a2139 $ */ public class RegexEntityReferenceTest { private static final DocumentReference REFERENCETOMATCH = new DocumentReference("wiki", "space", "page"); @Test public void testExact() { EntityReference wikiReference = new RegexEntityReference(Pattern.compile(REFERENCETOMATCH.getWikiReference().getName(), Pattern.LITERAL), EntityType.WIKI); EntityReference spaceReference = new RegexEntityReference(Pattern.compile(REFERENCETOMATCH.getLastSpaceReference().getName(), Pattern.LITERAL), EntityType.SPACE, wikiReference); EntityReference reference = new RegexEntityReference(Pattern.compile(REFERENCETOMATCH.getName(), Pattern.LITERAL), EntityType.DOCUMENT, spaceReference); Assert.assertTrue(reference.equals(REFERENCETOMATCH)); } @Test public void testWithOnlyPage() { EntityReference reference = new RegexEntityReference(Pattern.compile(REFERENCETOMATCH.getName(), Pattern.LITERAL), EntityType.DOCUMENT); Assert.assertTrue(reference.equals(REFERENCETOMATCH)); } @Test public void testWithOnlyWiki() { EntityReference reference = new RegexEntityReference(Pattern.compile(REFERENCETOMATCH.getWikiReference().getName(), Pattern.LITERAL), EntityType.WIKI); Assert.assertTrue(reference.equals(REFERENCETOMATCH)); } @Test public void testPattern() { EntityReference reference = new RegexEntityReference(Pattern.compile("p.*"), EntityType.DOCUMENT); Assert.assertTrue(reference.equals(REFERENCETOMATCH)); } @Test public void testPatternNotMatching() { EntityReference reference = new RegexEntityReference(Pattern.compile("space"), EntityType.DOCUMENT); Assert.assertFalse(reference.equals(REFERENCETOMATCH)); } @Test public void testWithNonRegexParent() { EntityReference reference = new RegexEntityReference(Pattern.compile("space"), EntityType.SPACE, new EntityReference("wiki", EntityType.WIKI)); Assert.assertTrue(reference.equals(REFERENCETOMATCH)); } }