1 /*
2 * $Id: ResourceUtilTest.java 471756 2006-11-06 15:01:43Z husted $
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
20 */
21 package org.apache.struts2.views.util;
22 /***
23 * <code>ResourceUtilTest</code>
24 *
25 */
26 import javax.servlet.http.HttpServletRequest;
27
28 import junit.framework.TestCase;
29
30 import org.easymock.MockControl;
31
32 public class ResourceUtilTest extends TestCase {
33
34 private MockControl control;
35 private HttpServletRequest requestMock;
36
37 public void testGetResourceBase() throws Exception {
38 control.expectAndReturn(requestMock.getServletPath(), "/mycontext/");
39 control.replay();
40 assertEquals("/mycontext", ResourceUtil.getResourceBase(requestMock));
41 control.verify();
42
43 control.reset();
44
45 control.expectAndReturn(requestMock.getServletPath(), "/mycontext/test.jsp");
46 control.replay();
47 assertEquals("/mycontext", ResourceUtil.getResourceBase(requestMock));
48 control.verify();
49
50 }
51
52
53 protected void setUp() {
54 control = MockControl.createControl(HttpServletRequest.class);
55 requestMock = (HttpServletRequest) control.getMock();
56 }
57 }