/** * Copyright 2005-2014 Restlet * * The contents of this file are subject to the terms of one of the following * open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can * select the license that you prefer but you may not use this file except in * compliance with one of these Licenses. * * You can obtain a copy of the Apache 2.0 license at * http://www.opensource.org/licenses/apache-2.0 * * You can obtain a copy of the EPL 1.0 license at * http://www.opensource.org/licenses/eclipse-1.0 * * See the Licenses for the specific language governing permissions and * limitations under the Licenses. * * Alternatively, you can obtain a royalty free commercial license with less * limitations, transferable or non-transferable, directly at * http://restlet.com/products/restlet-framework * * Restlet is a registered trademark of Restlet S.A.S. */ package org.restlet.test.ext.json; import static org.restlet.data.Status.SUCCESS_OK; import org.junit.Assert; import org.restlet.Request; import org.restlet.Response; import org.restlet.data.MediaType; import org.restlet.data.Method; import org.restlet.data.Reference; import org.restlet.ext.json.JsonRepresentation; import org.restlet.ext.json.JsonpFilter; import org.restlet.ext.json.JsonpRepresentation; import org.restlet.ext.xml.DomRepresentation; import org.restlet.representation.Representation; import org.restlet.representation.StringRepresentation; import org.restlet.test.RestletTestCase; /** * Test case for the {@link JsonpFilter} class. * * @author Cyril Lakech */ public class JsonpFilterTestCase extends RestletTestCase { public void testAfterHandle() { JsonpFilter filter = new JsonpFilter(null); Reference ref = new Reference(); final String callback = "callback"; ref.addQueryParameter(callback, "test"); Request request = new Request(Method.GET, ref); Response response = new Response(request); final String jsonString = "{\"attribute\": value}"; response.setEntity(new JsonRepresentation(jsonString)); filter.afterHandle(request, response); Representation actual = response.getEntity(); Representation expected = new JsonpRepresentation(callback, SUCCESS_OK, new JsonRepresentation(jsonString)); Assert.assertTrue(actual instanceof JsonpRepresentation); Assert.assertEquals(expected, actual); Assert.assertEquals(SUCCESS_OK, ((JsonpRepresentation) actual).getStatus()); } public void testAfterHandleText() { JsonpFilter filter = new JsonpFilter(null); Reference ref = new Reference(); final String callback = "callback"; ref.addQueryParameter(callback, "test"); Request request = new Request(Method.GET, ref); Response response = new Response(request); final String jsonString = "{\"attribute\": value}"; response.setEntity(new JsonRepresentation(jsonString)); filter.afterHandle(request, response); Representation actual = response.getEntity(); Representation expected = new JsonpRepresentation(callback, SUCCESS_OK, new StringRepresentation(jsonString, MediaType.TEXT_HTML)); Assert.assertTrue(actual instanceof JsonpRepresentation); Assert.assertEquals(expected, actual); Assert.assertEquals(SUCCESS_OK, ((JsonpRepresentation) actual).getStatus()); } public void testAfterHandle_without_callback_should_return_entity_unchanged() { JsonpFilter filter = new JsonpFilter(null); Reference ref = new Reference(); Request request = new Request(Method.GET, ref); Response response = new Response(request); final String jsonString = "{\"attribute\": value}"; final JsonRepresentation expected = new JsonRepresentation(jsonString); response.setEntity(expected); filter.afterHandle(request, response); Representation actual = response.getEntity(); Assert.assertEquals(expected, actual); } public void testAfterHandle_with_other_mediatype_should_return_entity_unchanged() throws Exception { JsonpFilter filter = new JsonpFilter(null); Reference ref = new Reference(); final String callback = "callback"; ref.addQueryParameter(callback, "test"); Request request = new Request(Method.GET, ref); Response response = new Response(request); final DomRepresentation expected = new DomRepresentation( MediaType.APPLICATION_XML); response.setEntity(expected); filter.afterHandle(request, response); Representation actual = response.getEntity(); Assert.assertEquals(expected, actual); } }