You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by st...@apache.org on 2011/11/01 14:08:29 UTC

svn commit: r1195975 - /maven/sandbox/trunk/plexus-utils-commons-bridge/plexus-utils-tck/src/test/java/org/codehaus/plexus/util/SelectorUtilsTest.java

Author: struberg
Date: Tue Nov  1 13:08:29 2011
New Revision: 1195975

URL: http://svn.apache.org/viewvc?rev=1195975&view=rev
Log:
MSANDBOX-51 add unit test for SelectorUtils

Thanks to James Saunders and Michael Nitschke for this test! 

Added:
    maven/sandbox/trunk/plexus-utils-commons-bridge/plexus-utils-tck/src/test/java/org/codehaus/plexus/util/SelectorUtilsTest.java   (with props)

Added: maven/sandbox/trunk/plexus-utils-commons-bridge/plexus-utils-tck/src/test/java/org/codehaus/plexus/util/SelectorUtilsTest.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plexus-utils-commons-bridge/plexus-utils-tck/src/test/java/org/codehaus/plexus/util/SelectorUtilsTest.java?rev=1195975&view=auto
==============================================================================
--- maven/sandbox/trunk/plexus-utils-commons-bridge/plexus-utils-tck/src/test/java/org/codehaus/plexus/util/SelectorUtilsTest.java (added)
+++ maven/sandbox/trunk/plexus-utils-commons-bridge/plexus-utils-tck/src/test/java/org/codehaus/plexus/util/SelectorUtilsTest.java Tue Nov  1 13:08:29 2011
@@ -0,0 +1,87 @@
+package org.codehaus.plexus.util;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import static org.junit.Assert.*;
+
+import java.io.File;
+
+import org.junit.Test;
+
+/**
+ * Test the {@link org.codehaus.plexus.util.SelectorUtils} class.
+ *
+ * @author <a href="mailto:jamesmsaunders@gmail.com">James Saunders</a>
+ * @author <a href="mailto:skaverhagen@gmail.com">Michael Nitschke</a> 
+ */
+public class SelectorUtilsTest
+{
+
+    @Test(expected=NullPointerException.class)
+    public void testMatchPatternStart()
+    {
+        SelectorUtils.matchPatternStart(null, null);
+    }
+
+    @Test
+    public void testEmptyStrings()
+    {
+        assertTrue(SelectorUtils.matchPatternStart("", ""));
+    }
+
+    @Test
+    public void testRegexPrefix() throws Exception
+    {
+        assertEquals(true, SelectorUtils.matchPatternStart(SelectorUtils.REGEX_HANDLER_PREFIX + File.separator +
+                                                           "aaa" + SelectorUtils.PATTERN_HANDLER_SUFFIX, ""));
+    }
+
+
+    @Test
+    public void testAntPatternStrings()
+    {
+        assertAntDoesNotMatch(File.separator + "aaa", "");
+        assertAntMatch("aaa", "");
+        assertAntMatch("/aaa/bbb", "/aaa/bbb");
+        assertAntMatch("/aaa/**",  "/aaa/bbb");
+        assertAntDoesNotMatch("/aaa/**", "/ccc/bbb");
+        assertAntMatch( "/aaa/**", "\\aaa\\bbb");
+        assertAntDoesNotMatch("/aaa/**", "\\ccc\\bbb");
+        assertAntDoesNotMatch("/aaa/",   "\\aaa\\bbb");
+    }
+
+
+    private void assertAntDoesNotMatch(String pattern, String target)
+    {
+        assertEquals(false, SelectorUtils.matchPatternStart(wrapWithAntHandler(pattern), target));
+    }
+
+    private void assertAntMatch(String pattern, String target)
+    {
+        assertEquals(true, SelectorUtils.matchPatternStart(wrapWithAntHandler(pattern), target));
+    }
+
+
+    private String wrapWithAntHandler(String val)
+    {
+        return SelectorUtils.ANT_HANDLER_PREFIX + val + SelectorUtils.PATTERN_HANDLER_SUFFIX;
+    }
+
+}

Propchange: maven/sandbox/trunk/plexus-utils-commons-bridge/plexus-utils-tck/src/test/java/org/codehaus/plexus/util/SelectorUtilsTest.java
------------------------------------------------------------------------------
    svn:eol-style = native