/* * 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.tests.e2e.json; import java.util.Collection; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.ws.rs.core.Feature; import javax.ws.rs.ext.ContextResolver; import javax.ws.rs.ext.Provider; import javax.json.bind.Jsonb; import javax.json.bind.JsonbBuilder; import javax.json.bind.JsonbConfig; import org.glassfish.jersey.jackson.JacksonFeature; import org.glassfish.jersey.jackson1.Jackson1Feature; import org.glassfish.jersey.jettison.JettisonConfig; import org.glassfish.jersey.jettison.JettisonFeature; import org.glassfish.jersey.jsonb.JsonbFeature; import org.glassfish.jersey.moxy.json.MoxyJsonConfig; import org.glassfish.jersey.moxy.json.MoxyJsonFeature; /** * Common class for JSON providers that should be used for testing JSON capabilities. * * @author Michal Gajdos */ public abstract class JsonTestProvider { public static final Collection<JsonTestProvider> JAXB_PROVIDERS = new LinkedHashSet<JsonTestProvider>() {{ add(new JacksonJsonTestProvider()); add(new Jackson1JsonTestProvider()); add(new JettisonMappedJsonTestProvider()); add(new JettisonBadgerfishJsonTestProvider()); add(new MoxyJsonTestProvider()); add(new JsonbTestProvider()); }}; // TODO add MoxyJsonTestProvider once MOXy supports POJO public static final Collection<JsonTestProvider> POJO_PROVIDERS = new LinkedHashSet<JsonTestProvider>() {{ add(new JacksonJsonTestProvider()); add(new Jackson1JsonTestProvider()); }}; private Feature feature; private JettisonConfig configuration; private Set<Object> providers = new LinkedHashSet<>(); public static class JettisonMappedJsonTestProvider extends JsonTestProvider { public JettisonMappedJsonTestProvider() { final JettisonConfig jsonConfiguration = JettisonConfig.mappedJettison().xml2JsonNs(new HashMap<String, String>() {{ put("http://www.w3.org/2001/XMLSchema-instance", "xsi"); put("http://example.com", "example"); put("http://test.jaxb.com", "jaxb"); }}).serializeAsArray("singleItemList").build(); setFeature(new JettisonFeature()); setConfiguration(jsonConfiguration); } } public static class JettisonBadgerfishJsonTestProvider extends JsonTestProvider { public JettisonBadgerfishJsonTestProvider() { setFeature(new JettisonFeature()); setConfiguration(JettisonConfig.badgerFish().build()); } } public static class MoxyJsonTestProvider extends JsonTestProvider { public MoxyJsonTestProvider() { setFeature(new MoxyJsonFeature()); getProviders().add(new MoxyJsonConfigurationContextResolver()); } } @Provider protected static final class MoxyJsonConfigurationContextResolver implements ContextResolver<MoxyJsonConfig> { @Override public MoxyJsonConfig getContext(final Class<?> objectType) { final MoxyJsonConfig configuration = new MoxyJsonConfig(); final Map<String, String> namespacePrefixMapper = new HashMap<>(1); namespacePrefixMapper.put("http://www.w3.org/2001/XMLSchema-instance", "xsi"); namespacePrefixMapper.put("http://example.com", "example"); namespacePrefixMapper.put("http://test.jaxb.com", "jaxb"); configuration.setNamespacePrefixMapper(namespacePrefixMapper); configuration.setNamespaceSeparator(':'); return configuration; } } @Provider protected static final class JsonbContextResolver implements ContextResolver<Jsonb> { @Override public Jsonb getContext(Class<?> type) { JsonbConfig config = new JsonbConfig().withAdapters(new CustomJsonbAdapter()); return JsonbBuilder.create(config); } } public static class JacksonJsonTestProvider extends JsonTestProvider { public JacksonJsonTestProvider() { setFeature(new JacksonFeature()); } } public static class Jackson1JsonTestProvider extends JsonTestProvider { public Jackson1JsonTestProvider() { setFeature(new Jackson1Feature()); } } public static class JsonbTestProvider extends JsonTestProvider { public JsonbTestProvider() { setFeature(new JsonbFeature()); getProviders().add(new JsonbContextResolver()); } } public JettisonConfig getConfiguration() { return configuration; } protected void setConfiguration(final JettisonConfig configuration) { this.configuration = configuration; } public Feature getFeature() { return feature; } protected void setFeature(final Feature feature) { this.feature = feature; } public Set<Object> getProviders() { return providers; } }