
| Key: |
COCOON-1873
|
| Type: |
Bug
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Andreas Hartmann
|
| Votes: |
0
|
| Watchers: |
1
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
URI: foo/bar/baz.html
Pattern: **/*.html
{1} is replaced with foo
{2} is replaced with bar/baz
Here's a patch for the test case:
Index: src/test/org/apache/cocoon/matching/WildcardURIMatcherTestCase.java
===================================================================
--- src/test/org/apache/cocoon/matching/WildcardURIMatcherTestCase.java (revision 417475)
+++ src/test/org/apache/cocoon/matching/WildcardURIMatcherTestCase.java (working copy)
@@ -57,4 +57,16 @@
assertEquals("Test for */*.xml", "test", result.get("1"));
assertEquals("Test for */*.xml", "something.xmlbla", result.get("2"));
}
+
+ public void testWildcardURIMatchMultiSinglePattern() throws Exception {
+ getRequest().setRequestURI("foo/bar/baz.html");
+
+ final Parameters parameters = new Parameters();
+
+ Map result = match("wildcard-uri", "**/*.html", parameters);
+ assertNotNull("Test if resource exists", result);
+ assertEquals("Test for {1} in **/*.html", "foo/bar", result.get("1"));
+ assertEquals("Test for {2} in **/*.html", "baz", result.get("2"));
+ }
+
}
|
|
Description
|
URI: foo/bar/baz.html
Pattern: **/*.html
{1} is replaced with foo
{2} is replaced with bar/baz
Here's a patch for the test case:
Index: src/test/org/apache/cocoon/matching/WildcardURIMatcherTestCase.java
===================================================================
--- src/test/org/apache/cocoon/matching/WildcardURIMatcherTestCase.java (revision 417475)
+++ src/test/org/apache/cocoon/matching/WildcardURIMatcherTestCase.java (working copy)
@@ -57,4 +57,16 @@
assertEquals("Test for */*.xml", "test", result.get("1"));
assertEquals("Test for */*.xml", "something.xmlbla", result.get("2"));
}
+
+ public void testWildcardURIMatchMultiSinglePattern() throws Exception {
+ getRequest().setRequestURI("foo/bar/baz.html");
+
+ final Parameters parameters = new Parameters();
+
+ Map result = match("wildcard-uri", "**/*.html", parameters);
+ assertNotNull("Test if resource exists", result);
+ assertEquals("Test for {1} in **/*.html", "foo/bar", result.get("1"));
+ assertEquals("Test for {2} in **/*.html", "baz", result.get("2"));
+ }
+
}
|
Show » |
| There are no subversion log entries for this issue yet.
|
|