All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jayway.restassured.internal.path.xml.mapping.XmlObjectDeserializer.groovy Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
/*
 * Copyright 2013 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 com.jayway.restassured.internal.path.xml.mapping

import com.jayway.restassured.internal.mapper.ObjectDeserializationContextImpl
import com.jayway.restassured.mapper.DataToDeserialize
import com.jayway.restassured.mapper.ObjectDeserializationContext
import com.jayway.restassured.mapper.factory.JAXBObjectMapperFactory
import com.jayway.restassured.path.xml.config.XmlParserType
import com.jayway.restassured.path.xml.config.XmlPathConfig
import org.apache.commons.lang3.Validate

import static com.jayway.restassured.mapper.resolver.ObjectMapperResolver.isJAXBInClassPath

class XmlObjectDeserializer {

    public static  T deserialize(String xml, Class cls, XmlPathConfig xmlPathConfig) {
        Validate.notNull(xmlPathConfig, "XmlPath configuration wasn't specified, cannot deserialize.")
        def deserializationCtx = new ObjectDeserializationContextImpl()
        def mapperType = xmlPathConfig.defaultParserType()
        deserializationCtx.type = cls
        deserializationCtx.charset = xmlPathConfig.charset()
        deserializationCtx.dataToDeserialize = new DataToDeserialize() {

            @Override
            String asString() {
                return xml
            }

            @Override
            byte[] asByteArray() {
                return xml.getBytes(xmlPathConfig.charset())
            }

            @Override
            InputStream asInputStream() {
                return new ByteArrayInputStream(asByteArray())
            }
        }

        if (xmlPathConfig.hasDefaultDeserializer()) {
            return xmlPathConfig.defaultDeserializer().deserialize(deserializationCtx) as T;
        } else if (mapperType != null || xmlPathConfig.hasDefaultParserType()) {
            XmlParserType mapperTypeToUse = mapperType == null ? xmlPathConfig.defaultParserType() : mapperType;
            return deserializeWithObjectMapper(deserializationCtx, mapperTypeToUse, xmlPathConfig)
        }

        if (isJAXBInClassPath()) {
            return deserializeWithJaxb(deserializationCtx, xmlPathConfig.jaxbObjectMapperFactory()) as T
        }

        throw new IllegalStateException("Cannot deserialize object because no XML deserializer found in classpath. Please put JAXB in the classpath.")
    }

    private static  T deserializeWithObjectMapper(ObjectDeserializationContext ctx, XmlParserType mapperType, XmlPathConfig config) {
        if (mapperType == XmlParserType.JAXB && isJAXBInClassPath()) {
            return deserializeWithJaxb(ctx, config.jaxbObjectMapperFactory()) as T
        } else {
            def lowerCase = mapperType.toString().toLowerCase()
            throw new IllegalArgumentException("Cannot deserialize object using $mapperType because $lowerCase doesn't exist in the classpath.")
        }
    }

    static def deserializeWithJaxb(ObjectDeserializationContext ctx, JAXBObjectMapperFactory factory) {
        new XmlPathJaxbObjectDeserializer(factory).deserialize(ctx)
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy