/* * Copyright (c) 2005-2011 Grameen Foundation USA * All rights reserved. * * 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. * * See also http://www.apache.org/licenses/LICENSE-2.0.html for an * explanation of the license and how it is applied. */ package org.mifos.application; import static junitx.framework.StringAssert.assertContains; import static junitx.framework.StringAssert.assertNotContains; import static org.mifos.reports.ui.DispatchTestUtil.dispatch; import static org.mifos.reports.ui.DispatchTestUtil.getSuccessfulDocument; import static org.mifos.reports.ui.DispatchTestUtil.makeRequest; import junit.framework.Assert; import junit.framework.TestCase; import org.mifos.reports.ui.DispatchTestUtil; import org.mifos.reports.ui.Dispatcher; import org.testng.annotations.Test; import servletunit.HttpServletRequestSimulator; import servletunit.HttpServletResponseSimulator; @Test(groups={"unit", "fastTestsSuite"}, dependsOnGroups={"productMixTestSuite"}) public class CreateReportTest extends TestCase { public void testCreateReportPage() throws Exception { HttpServletResponseSimulator response = dispatch("/reports/create"); String out = getSuccessfulDocument(response); assertNotContains("page is for features", out); assertContains("Report name", out); assertContains("input name=\"name\"", out); } public void testCreateReport() throws Exception { HttpServletResponseSimulator response = new HttpServletResponseSimulator(); HttpServletRequestSimulator request = makeRequest("/reports/create", HttpServletRequestSimulator.POST); request.addParameter("name", "newReport"); new Dispatcher().service(request, response); Assert.assertEquals(Dispatcher.CREATED, response.getStatusCode()); Assert.assertEquals("https://test-server:123/context/developer/reports/1", response.getHeader("Location")); } public void testRunReportPage() throws Exception { HttpServletResponseSimulator response = dispatch("/reports/53"); /* * A forward might make more sense, but we'll stick with the redirect * for now (not sure how to forward to a jsp and all). */ Assert.assertEquals(303, response.getStatusCode()); Assert.assertEquals("https://test-server:123/context/reportsUserParamsAction.do" + "?method=loadAddList&reportId=53", response.getHeader("Location")); } public void testBadUrlUnderReports() throws Exception { DispatchTestUtil.verifyNotFound("/reports/53/6"); } }