blob: 97e0b4c32917455f7cfd2746bc38288521c1f0fe [file] [log] [blame]
// Copyright 2005 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.tapestry.web;
import static org.easymock.EasyMock.expect;
import java.util.List;
import org.testng.annotations.Test;
import javax.servlet.http.HttpSession;
/**
* Tests for {@link org.apache.tapestry.web.ServletWebSession}.
*
* @author Howard M. Lewis Ship
* @since 4.0
*/
@Test
public class ServletWebSessionTest extends BaseWebTestCase
{
public void testGetAttributeNames()
{
HttpSession session = newSession();
expect(session.getAttributeNames()).andReturn(newEnumeration());
replay();
WebSession ws = new ServletWebSession(session);
List l = ws.getAttributeNames();
checkList(l);
verify();
}
private HttpSession newSession()
{
return newMock(HttpSession.class);
}
public void testGetAttribute()
{
Object attribute = new Object();
HttpSession session = newSession();
expect(session.getAttribute("attr")).andReturn(attribute);
replay();
WebSession ws = new ServletWebSession(session);
assertSame(attribute, ws.getAttribute("attr"));
verify();
}
public void testSetAttribute()
{
Object attribute = new Object();
HttpSession session = newSession();
session.setAttribute("name", attribute);
replay();
WebSession ws = new ServletWebSession(session);
ws.setAttribute("name", attribute);
verify();
}
public void testSetAttributeToNull()
{
HttpSession session = newSession();
session.removeAttribute("tonull");
replay();
WebSession ws = new ServletWebSession(session);
ws.setAttribute("tonull", null);
verify();
}
public void testGetId()
{
HttpSession session = newSession();
expect(session.getId()).andReturn("abc");
replay();
WebSession ws = new ServletWebSession(session);
assertEquals("abc", ws.getId());
verify();
}
public void testInvalidate()
{
HttpSession session = newSession();
session.invalidate();
replay();
WebSession ws = new ServletWebSession(session);
ws.invalidate();
verify();
}
}