/*
* $Id: SetTagTest.java 471756 2006-11-06 15:01:43Z husted $
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.views.jsp;
import javax.servlet.jsp.JspException;
/**
*/
public class SetTagTest extends AbstractUITagTest {
Chewbacca chewie;
SetTag tag;
public void testApplicationScope() throws JspException {
tag.setName("foo");
tag.setValue("name");
tag.setScope("application");
tag.doStartTag();
tag.doEndTag();
assertEquals("chewie", servletContext.getAttribute("foo"));
}
public void testPageScope() throws JspException {
tag.setName("foo");
tag.setValue("name");
tag.setScope("page");
tag.doStartTag();
tag.doEndTag();
assertEquals("chewie", pageContext.getAttribute("foo"));
}
public void testRequestScope() throws JspException {
tag.setName("foo");
tag.setValue("name");
tag.setScope("request");
tag.doStartTag();
tag.doEndTag();
assertEquals("chewie", request.getAttribute("foo"));
}
public void testSessionScope() throws JspException {
tag.setName("foo");
tag.setValue("name");
tag.setScope("session");
tag.doStartTag();
tag.doEndTag();
assertEquals("chewie", session.get("foo"));
}
public void testStrutsScope() throws JspException {
tag.setName("foo");
tag.setValue("name");
tag.doStartTag();
tag.doEndTag();
assertEquals("chewie", context.get("foo"));
}
public void testStrutsScope2() throws JspException {
tag.setName("chewie");
tag.doStartTag();
tag.doEndTag();
assertEquals(chewie, context.get("chewie"));
}
protected void setUp() throws Exception {
super.setUp();
tag = new SetTag();
chewie = new Chewbacca("chewie", true);
stack.push(chewie);
tag.setPageContext(pageContext);
}
public class Chewbacca {
String name;
boolean furry;
public Chewbacca(String name, boolean furry) {
this.name = name;
this.furry = furry;
}
public void setFurry(boolean furry) {
this.furry = furry;
}
public boolean isFurry() {
return furry;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
}
|