001    package org.apache.turbine.pipeline;
002    
003    
004    /*
005     * Licensed to the Apache Software Foundation (ASF) under one
006     * or more contributor license agreements.  See the NOTICE file
007     * distributed with this work for additional information
008     * regarding copyright ownership.  The ASF licenses this file
009     * to you under the Apache License, Version 2.0 (the
010     * "License"); you may not use this file except in compliance
011     * with the License.  You may obtain a copy of the License at
012     *
013     *   http://www.apache.org/licenses/LICENSE-2.0
014     *
015     * Unless required by applicable law or agreed to in writing,
016     * software distributed under the License is distributed on an
017     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
018     * KIND, either express or implied.  See the License for the
019     * specific language governing permissions and limitations
020     * under the License.
021     */
022    
023    
024    import java.util.Vector;
025    
026    import javax.servlet.ServletConfig;
027    import javax.servlet.http.HttpServletResponse;
028    
029    import org.apache.turbine.om.security.User;
030    import org.apache.turbine.services.template.TemplateService;
031    import org.apache.turbine.test.BaseTestCase;
032    import org.apache.turbine.test.EnhancedMockHttpServletRequest;
033    import org.apache.turbine.test.EnhancedMockHttpSession;
034    import org.apache.turbine.util.RunData;
035    import org.apache.turbine.util.TurbineConfig;
036    import org.apache.turbine.util.uri.URIConstants;
037    
038    import com.mockobjects.servlet.MockHttpServletResponse;
039    import com.mockobjects.servlet.MockServletConfig;
040    
041    /**
042     * Tests TurbinePipeline.
043     *
044     * @author <a href="mailto:epugh@opensourceConnections.com">Eric Pugh</a>
045     * @author <a href="mailto:peter@courcoux.biz">Peter Courcoux</a>
046     * @version $Id: DetermineActionValveTest.java 615328 2008-01-25 20:25:05Z tv $
047     */
048    public class DetermineActionValveTest extends BaseTestCase
049    {
050        private static TurbineConfig tc = null;
051        private static TemplateService ts = null;
052        private MockServletConfig config = null;
053        private EnhancedMockHttpServletRequest request = null;
054        private EnhancedMockHttpSession session = null;
055        private HttpServletResponse response = null;
056        private static ServletConfig sc = null;
057        /**
058         * Constructor
059         */
060        public DetermineActionValveTest(String testName) throws Exception
061        {
062            super(testName);
063        }
064    
065        protected void setUp() throws Exception {
066            super.setUp();
067            config = new MockServletConfig();
068            config.setupNoParameters();
069            request = new EnhancedMockHttpServletRequest();
070            request.setupServerName("bob");
071            request.setupGetProtocol("http");
072            request.setupScheme("scheme");
073            request.setupPathInfo("damn");
074            request.setupGetServletPath("damn2");
075            request.setupGetContextPath("wow");
076            request.setupGetContentType("html/text");
077            request.setupAddHeader("Content-type", "html/text");
078            request.setupAddHeader("Accept-Language", "en-US");
079    
080    
081    
082            Vector v = new Vector();
083            v.add(URIConstants.CGI_ACTION_PARAM);
084            request.setupGetParameterNames(v.elements());
085    
086            request.setupAddParameter(URIConstants.CGI_ACTION_PARAM,"TestAction");
087    
088    
089            session = new EnhancedMockHttpSession();
090            response = new MockHttpServletResponse();
091    
092            session.setupGetAttribute(User.SESSION_KEY, null);
093            request.setSession(session);
094    
095    
096    
097            sc = config;
098            tc =
099                new TurbineConfig(
100                        ".",
101                "/conf/test/CompleteTurbineResources.properties");
102            tc.initialize();
103        }
104    
105        /**
106         * Tests the Valve.
107         */
108        public void testValve() throws Exception
109        {
110            RunData runData = getRunData(request,response,config);
111    
112            Pipeline pipeline = new TurbinePipeline();
113            PipelineData pipelineData = runData;
114    
115            DetermineActionValve valve = new DetermineActionValve();
116            pipeline.addValve(valve);
117    
118            pipeline.invoke(pipelineData);
119            assertEquals("TestAction",runData.getAction());
120    
121    
122        }
123    
124    
125    }