SPR-5937: add param map to freemarker url macro

This commit is contained in:
David Syer
2011-06-05 21:02:02 +00:00
parent c2e62f098a
commit 32ebf18429
2 changed files with 188 additions and 178 deletions

View File

@@ -0,0 +1,71 @@
/*
* Copyright 2002-2011 the original author or authors.
*
* 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.springframework.web.servlet.support;
import static org.junit.Assert.assertEquals;
import java.util.HashMap;
import java.util.Map;
import org.junit.Before;
import org.junit.Test;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
import org.springframework.mock.web.MockServletContext;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.GenericWebApplicationContext;
/**
* @author Dave Syer
*
*/
public class RequestContextTests {
private MockHttpServletRequest request = new MockHttpServletRequest();
private MockHttpServletResponse response = new MockHttpServletResponse();
private MockServletContext servletContext = new MockServletContext();
private Map<String, Object> model = new HashMap<String, Object>();
@Before
public void init() {
GenericWebApplicationContext applicationContext = new GenericWebApplicationContext();
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, applicationContext);
}
@Test
public void testGetContextUrlString() throws Exception {
request.setContextPath("foo/");
RequestContext context = new RequestContext(request, response, servletContext, model);
assertEquals("foo/bar", context.getContextUrl("bar"));
}
@Test
public void testGetContextUrlStringMap() throws Exception {
request.setContextPath("foo/");
RequestContext context = new RequestContext(request, response, servletContext, model);
Map<String, Object> map = new HashMap<String, Object>();
map.put("foo", "bar");
map.put("spam", "bucket");
assertEquals("foo/bar?spam=bucket", context.getContextUrl("{foo}?spam={spam}", map));
}
// TODO: test escaping of query params (not supported by UriTemplate but some features present in UriUtils).
}