View | Details | Raw Unified | Return to bug 34109
Collapse All | Expand All

(-)test/org/apache/taglibs/standard/tag/url/core/Test34109.java (+45 lines)
Line 0 Link Here
1
/*                                                                             
2
 * Copyright 1999,2004 The Apache Software Foundation.                         
3
 *                                                                             
4
 * Licensed under the Apache License, Version 2.0 (the "License");             
5
 * you may not use this file except in compliance with the License.            
6
 * You may obtain a copy of the License at                                     
7
 *                                                                             
8
 *      http://www.apache.org/licenses/LICENSE-2.0                             
9
 *                                                                             
10
 * Unless required by applicable law or agreed to in writing, software         
11
 * distributed under the License is distributed on an "AS IS" BASIS,           
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.    
13
 * See the License for the specific language governing permissions and         
14
 * limitations under the License.                                              
15
 */
16
17
package org.apache.taglibs.standard.tag.url.core;
18
19
import javax.servlet.jsp.*;
20
import org.apache.cactus.*;
21
import org.apache.taglibs.standard.testutil.TestUtil;
22
23
public class Test34109 extends JspTestCase {
24
25
    public Test34109(String name) {
26
	super(name);
27
    }
28
29
    protected void setUp() throws Exception {
30
	super.setUp();
31
    }
32
33
    protected void tearDown() throws Exception {
34
	super.tearDown();
35
    }
36
37
    public void test34109() throws Exception {
38
	String toInclude = TestUtil.getTestJsp(this);
39
	pageContext.include(toInclude);
40
41
	String genurl = (String) pageContext.getAttribute("genurl", PageContext.APPLICATION_SCOPE);
42
43
	assertEquals("The URL should be /foo/test.jsp", "/foo/test.jsp", genurl);
44
    }
45
}
(-)test/web/org/apache/taglibs/standard/tag/url/core/Test34109.jsp (+5 lines)
Line 0 Link Here
1
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
2
3
<c:set var="genurl" scope="application">
4
  <c:url context="/foo/" value="/test.jsp"/>
5
</c:set>

Return to bug 34109