Java tutorial
/** * Copyright (c) 2007 Encore Research Group, University of Toronto * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package net.sf.sail.webapp.domain.webservice.http; /** * @author Laurel Williams * * @version $Id$ * */ import junit.framework.TestCase; import net.sf.sail.webapp.dao.sds.CurnitMapNotFoundException; import net.sf.sail.webapp.dao.sds.impl.AbstractHttpRestCommand; import net.sf.sail.webapp.domain.webservice.http.impl.HttpGetCurnitMapRequest; import org.apache.commons.httpclient.HttpMethod; import org.apache.commons.httpclient.HttpStatus; import org.easymock.EasyMock; public class HttpGetCurnitMapRequestTest extends TestCase { private static final String URL = "/offering/1/curnitmap"; protected AbstractHttpRequest request; protected HttpMethod method; protected void setUp() throws Exception { super.setUp(); method = EasyMock.createMock(HttpMethod.class); request = new HttpGetCurnitMapRequest(AbstractHttpRestCommand.REQUEST_HEADERS_ACCEPT, AbstractHttpRestCommand.EMPTY_STRING_MAP, URL, HttpStatus.SC_OK); } protected void tearDown() throws Exception { super.tearDown(); method = null; request = null; } public void testIsValidResponseStatus_shouldThrowCurnitMapNotFoundException() throws Exception { EasyMock.expect(method.getStatusText()).andReturn("whatever").anyTimes(); EasyMock.expect(method.getResponseBodyAsString()).andReturn("whatever").anyTimes(); EasyMock.replay(method); try { request.isValidResponseStatus(method, HttpStatus.SC_CONFLICT); fail("Expected CurnitMapNotFoundException to be thrown"); } catch (CurnitMapNotFoundException e) { } EasyMock.verify(method); } }