blob: 098e5982feda521a3645ccdf14c1f2e917bdc5b5 [file] [log] [blame]
/*
* $Id$
*
* Copyright 2006 The Apache Software Foundation.
*
* Licensed 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.
*/
package org.apache.struts2.dispatcher;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts2.ServletActionContext;
import org.apache.struts2.StrutsTestCase;
import com.mockobjects.dynamic.C;
import com.mockobjects.dynamic.Mock;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.util.OgnlUtil;
/**
* HttpHeaderResultTest
*
*/
public class HttpHeaderResultTest extends StrutsTestCase {
ActionInvocation invocation;
HttpHeaderResult result;
HttpServletResponse response;
Mock responseMock;
public void testHeaderValuesAreNotParsedWhenParseIsFalse() throws Exception {
Map params = new HashMap();
params.put("headers.foo", "${bar}");
params.put("headers.baz", "baz");
Map values = new HashMap();
values.put("bar", "abc");
ActionContext.getContext().getValueStack().push(values);
OgnlUtil.setProperties(params, result);
responseMock.expect("addHeader", C.args(C.eq("foo"), C.eq("${bar}")));
responseMock.expect("addHeader", C.args(C.eq("baz"), C.eq("baz")));
result.setParse(false);
result.execute(invocation);
responseMock.verify();
}
public void testHeaderValuesAreParsedAndSet() throws Exception {
Map params = new HashMap();
params.put("headers.foo", "${bar}");
params.put("headers.baz", "baz");
Map values = new HashMap();
values.put("bar", "abc");
ActionContext.getContext().getValueStack().push(values);
OgnlUtil.setProperties(params, result);
responseMock.expect("addHeader", C.args(C.eq("foo"), C.eq("abc")));
responseMock.expect("addHeader", C.args(C.eq("baz"), C.eq("baz")));
result.execute(invocation);
responseMock.verify();
}
public void testStatusIsSet() throws Exception {
responseMock.expect("setStatus", C.eq(123));
result.setStatus(123);
result.execute(invocation);
responseMock.verify();
}
protected void setUp() throws Exception {
super.setUp();
result = new HttpHeaderResult();
responseMock = new Mock(HttpServletResponse.class);
response = (HttpServletResponse) responseMock.proxy();
invocation = (ActionInvocation) new Mock(ActionInvocation.class).proxy();
ServletActionContext.setResponse(response);
}
protected void tearDown() throws Exception {
super.tearDown();
ServletActionContext.setResponse(null);
ActionContext.setContext(null);
}
}