/** * Licensed to Apereo under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright ownership. Apereo * 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 the * following location: * * <p>http://www.apache.org/licenses/LICENSE-2.0 * * <p>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.apereo.portal.redirect; import static org.junit.Assert.assertEquals; import static org.mockito.Mockito.when; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import org.junit.Before; import org.junit.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; public class PortletRedirectionControllerTest { PortletRedirectionController controller = new PortletRedirectionController(); Map<String, IRedirectionUrl> services; @Mock HttpServletRequest request; @Before public void setUp() { MockitoAnnotations.initMocks(this); when(request.getParameterValues("id")).thenReturn(new String[] {"student"}); } @Test public void testExternalUrl() { ExternalRedirectionUrl url = new ExternalRedirectionUrl(); url.setUrl("http://somewhere.com/something"); Map<String, String[]> additionalParameters = new HashMap<String, String[]>(); additionalParameters.put("action", new String[] {"show"}); additionalParameters.put("list", new String[] {"v1", "v2"}); url.setAdditionalParameters(additionalParameters); Map<String, String> dynamicParameters = new HashMap<String, String>(); dynamicParameters.put("id", "username"); url.setDynamicParameters(dynamicParameters); String expected = "http://somewhere.com/something?action=show&list=v1&list=v2&username=student"; String actual = controller.getUrlString(url, request, new ArrayList<String>()); assertEquals(expected, actual); } }