/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2013-2017 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package org.glassfish.jersey.examples.jsonp; import java.net.URI; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.Set; import java.util.stream.Collectors; import javax.ws.rs.client.Entity; import javax.ws.rs.client.WebTarget; import javax.ws.rs.core.Application; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import javax.ws.rs.core.UriBuilder; import javax.json.Json; import javax.json.JsonArray; import javax.json.JsonArrayBuilder; import javax.json.JsonNumber; import javax.json.JsonObject; import org.glassfish.jersey.test.JerseyTest; import org.junit.Test; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; /** * @author Michal Gajdos */ public class JsonProcessingResourceTest extends JerseyTest { private static final List<JsonObject> documents = new ArrayList<>(); static { documents.add(Json.createObjectBuilder() .add("name", "Jersey") .add("site", "http://jersey.java.net") .build() ); documents.add(Json.createObjectBuilder() .add("age", 33) .add("phone", "158158158") .add("name", "Foo") .build() ); documents.add(Json.createObjectBuilder() .add("name", "JSON-P") .add("site", "http://jsonp.java.net") .build() ); } @Override protected Application configure() { return new MyApplication(); } @Override protected URI getBaseUri() { return UriBuilder.fromUri(super.getBaseUri()).path("json-processing-webapp").build(); } @Test public void testStoreGetRemoveDocument() throws Exception { final JsonObject document = documents.get(0); // Store. final Response response = target("document").request(MediaType.APPLICATION_JSON).post(Entity.json(document)); assertEquals(200, response.getStatus()); final List<JsonNumber> ids = response.readEntity(JsonArray.class).getValuesAs(JsonNumber.class); assertEquals(1, ids.size()); // Get. final String id = ids.get(0).toString(); final WebTarget documentTarget = target("document").path(id); final JsonObject storedDocument = documentTarget.request(MediaType.APPLICATION_JSON) .get(JsonObject.class); assertEquals(document, storedDocument); // Remove. final JsonObject removedDocument = documentTarget.request(MediaType.APPLICATION_JSON).delete(JsonObject.class); assertEquals(document, removedDocument); // Get. final Response errorResponse = documentTarget.request(MediaType.APPLICATION_JSON).get(); assertEquals(204, errorResponse.getStatus()); } private JsonArray getDocumentJsonArray() { final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); for (final JsonObject document : documents) { arrayBuilder.add(document); } return arrayBuilder.build(); } @Test public void testStoreDocuments() throws Exception { final Response response = target("document/multiple") .request(MediaType.APPLICATION_JSON).post(Entity.json(getDocumentJsonArray())); assertEquals(200, response.getStatus()); final List<JsonNumber> ids = response.readEntity(JsonArray.class).getValuesAs(JsonNumber.class); assertEquals(documents.size(), ids.size()); // Remove All. target("document").request().delete(); } @Test public void testFilterDocuments() throws Exception { // Store documents. target("document/multiple").request(MediaType.APPLICATION_JSON_TYPE).post(Entity.json(getDocumentJsonArray())); // Filter. JsonArray filter = Json.createArrayBuilder().add("site").build(); JsonArray filtered = target("document/filter").request(MediaType.APPLICATION_JSON) .post(Entity.json(filter), JsonArray.class); checkFilteredDocuments(filtered, 2, "site"); filter = Json.createArrayBuilder().add("site").add("age").build(); filtered = target("document/filter").request(MediaType.APPLICATION_JSON) .post(Entity.json(filter), JsonArray.class); checkFilteredDocuments(filtered, 3, "site", "age"); // Remove All. target("document").request().delete(); } private void checkFilteredDocuments(final JsonArray filtered, final int size, final String... properties) { assertEquals(size, filtered.size()); Set<String> strings = Arrays.stream(properties).collect(Collectors.toSet()); for (final JsonObject document : filtered.getValuesAs(JsonObject.class)) { for (final String property : document.keySet()) { assertTrue(strings.contains(property)); } } } }