/rest-assured/src/main/groovy/io/restassured/internal/mapping/ObjectMapping.groovy

http://github.com/jayway/rest-assured · Groovy · 280 lines · 235 code · 30 blank · 15 comment · 124 complexity · ba292d8370d1c04a7d17637f8f7af781 MD5 · raw file

  1. /*
  2. * Copyright 2019 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package io.restassured.internal.mapping
  17. import io.restassured.common.mapper.DataToDeserialize
  18. import io.restassured.config.EncoderConfig
  19. import io.restassured.config.ObjectMapperConfig
  20. import io.restassured.http.ContentType
  21. import io.restassured.internal.http.ContentTypeExtractor
  22. import io.restassured.mapper.ObjectMapperDeserializationContext
  23. import io.restassured.mapper.ObjectMapperSerializationContext
  24. import io.restassured.mapper.ObjectMapperType
  25. import io.restassured.path.json.mapper.factory.GsonObjectMapperFactory
  26. import io.restassured.path.json.mapper.factory.Jackson1ObjectMapperFactory
  27. import io.restassured.path.json.mapper.factory.Jackson2ObjectMapperFactory
  28. import io.restassured.path.json.mapper.factory.JohnzonObjectMapperFactory
  29. import io.restassured.path.json.mapper.factory.JsonbObjectMapperFactory
  30. import io.restassured.path.xml.mapper.factory.JAXBObjectMapperFactory
  31. import io.restassured.response.ResponseBodyData
  32. import org.apache.commons.lang3.Validate
  33. import java.lang.reflect.Type
  34. import static io.restassured.common.mapper.resolver.ObjectMapperResolver.*
  35. import static io.restassured.http.ContentType.ANY
  36. import static io.restassured.internal.common.assertion.AssertParameter.notNull
  37. import static org.apache.commons.lang3.StringUtils.containsIgnoreCase
  38. class ObjectMapping {
  39. public
  40. static <T> T deserialize(ResponseBodyData response, Type cls, String contentType, String defaultContentType, String charset, ObjectMapperType mapperType,
  41. ObjectMapperConfig objectMapperConfig) {
  42. Validate.notNull(objectMapperConfig, "String mapper configuration wasn't found, cannot deserialize.")
  43. def deserializationCtx = deserializationContext(response, cls, contentType, charset)
  44. if (objectMapperConfig.hasDefaultObjectMapper()) {
  45. return objectMapperConfig.defaultObjectMapper().deserialize(deserializationContext(response, cls, contentType, charset)) as T;
  46. } else if (mapperType != null || objectMapperConfig.hasDefaultObjectMapperType()) {
  47. ObjectMapperType mapperTypeToUse = mapperType == null ? objectMapperConfig.defaultObjectMapperType() : mapperType;
  48. return deserializeWithObjectMapper(deserializationCtx, mapperTypeToUse, objectMapperConfig)
  49. }
  50. if (containsIgnoreCase(contentType, "json")) {
  51. if (isJackson2InClassPath()) {
  52. return parseWithJackson2(deserializationCtx, objectMapperConfig.jackson2ObjectMapperFactory()) as T
  53. } else if (isJackson1InClassPath()) {
  54. return parseWithJackson1(deserializationCtx, objectMapperConfig.jackson1ObjectMapperFactory()) as T
  55. } else if (isGsonInClassPath()) {
  56. return parseWithGson(deserializationCtx, objectMapperConfig.gsonObjectMapperFactory()) as T
  57. } else if (isJohnzonInClassPath()) {
  58. return parseWithJohnzon(deserializationCtx, objectMapperConfig.johnzonObjectMapperFactory()) as T
  59. } else if (isYassonInClassPath()) {
  60. return parseWithJsonb(deserializationCtx, objectMapperConfig.jsonbObjectMapperFactory()) as T
  61. }
  62. throw new IllegalStateException("Cannot parse object because no JSON deserializer found in classpath. Please put either Jackson (Databind) or Gson in the classpath.")
  63. } else if (containsIgnoreCase(contentType, "xml")) {
  64. if (isJAXBInClassPath()) {
  65. return parseWithJaxb(deserializationCtx, objectMapperConfig.jaxbObjectMapperFactory()) as T
  66. }
  67. throw new IllegalStateException("Cannot parse object because no XML deserializer found in classpath. Please put a JAXB compliant object mapper in classpath.")
  68. } else if (defaultContentType != null) {
  69. if (containsIgnoreCase(defaultContentType, "json")) {
  70. if (isJackson2InClassPath()) {
  71. return parseWithJackson2(deserializationCtx, objectMapperConfig.jackson2ObjectMapperFactory()) as T
  72. } else if (isJackson1InClassPath()) {
  73. return parseWithJackson1(deserializationCtx, objectMapperConfig.jackson1ObjectMapperFactory()) as T
  74. } else if (isGsonInClassPath()) {
  75. return parseWithGson(deserializationCtx, objectMapperConfig.gsonObjectMapperFactory()) as T
  76. } else if (isJohnzonInClassPath()) {
  77. return parseWithJohnzon(deserializationCtx, objectMapperConfig.johnzonObjectMapperFactory()) as T
  78. } else if (isYassonInClassPath()) {
  79. return parseWithJsonb(deserializationCtx, objectMapperConfig.jsonbObjectMapperFactory()) as T
  80. }
  81. } else if (containsIgnoreCase(defaultContentType, "xml")) {
  82. if (isJAXBInClassPath()) {
  83. return parseWithJaxb(deserializationCtx, objectMapperConfig.jaxbObjectMapperFactory()) as T
  84. }
  85. }
  86. }
  87. throw new IllegalStateException(String.format("Cannot parse object because no supported Content-Type was specified in response. Content-Type was '%s'.", contentType))
  88. }
  89. private
  90. static <T> T deserializeWithObjectMapper(ObjectMapperDeserializationContext ctx, ObjectMapperType mapperType, ObjectMapperConfig config) {
  91. if (mapperType == ObjectMapperType.JACKSON_2 && isJackson2InClassPath()) {
  92. return parseWithJackson2(ctx, config.jackson2ObjectMapperFactory()) as T
  93. } else if (mapperType == ObjectMapperType.JACKSON_1 && isJackson1InClassPath()) {
  94. return parseWithJackson1(ctx, config.jackson1ObjectMapperFactory()) as T
  95. } else if (mapperType == ObjectMapperType.GSON && isGsonInClassPath()) {
  96. return parseWithGson(ctx, config.gsonObjectMapperFactory()) as T
  97. } else if (mapperType == ObjectMapperType.JAXB && isJAXBInClassPath()) {
  98. return parseWithJaxb(ctx, config.jaxbObjectMapperFactory()) as T
  99. } else if (mapperType == ObjectMapperType.JOHNZON && isJohnzonInClassPath()) {
  100. return parseWithJohnzon(ctx, config.johnzonObjectMapperFactory()) as T
  101. } else if (mapperType == ObjectMapperType.JSONB && isYassonInClassPath()) {
  102. return parseWithJsonb(ctx, config.jsonbObjectMapperFactory()) as T
  103. } else {
  104. def lowerCase = mapperType.toString().toLowerCase()
  105. throw new IllegalArgumentException("Cannot map response body with mapper $mapperType because $lowerCase doesn't exist in the classpath.")
  106. }
  107. }
  108. public static String serialize(Object object, String contentType, String charset, ObjectMapperType mapperType, ObjectMapperConfig config,
  109. EncoderConfig encoderConfig) {
  110. notNull(object, "String to serialize")
  111. notNull(config, "Object mapper configuration not found, cannot serialize object.")
  112. notNull(encoderConfig, "Encoder configuration not found, cannot serialize object.")
  113. def serializationCtx = serializationContext(object, contentType, charset)
  114. if (config.hasDefaultObjectMapper()) {
  115. return config.defaultObjectMapper().serialize(serializationContext(object, contentType, charset));
  116. } else if (mapperType != null || config.hasDefaultObjectMapperType()) {
  117. mapperType = mapperType ?: config.defaultObjectMapperType()
  118. return serializeWithObjectMapper(serializationCtx, mapperType, config)
  119. }
  120. if (contentType == null || contentType == ANY.toString()) {
  121. if (isJackson2InClassPath()) {
  122. return serializeWithJackson2(serializationCtx, config.jackson2ObjectMapperFactory())
  123. } else if (isJackson1InClassPath()) {
  124. return serializeWithJackson1(serializationCtx, config.jackson1ObjectMapperFactory())
  125. } else if (isGsonInClassPath()) {
  126. return serializeWithGson(serializationCtx, config.gsonObjectMapperFactory())
  127. } else if (isJAXBInClassPath()) {
  128. return serializeWithJaxb(serializationCtx, config.jaxbObjectMapperFactory())
  129. } else if (isJohnzonInClassPath()) {
  130. return serializeWithJohnzon(serializationCtx, config.johnzonObjectMapperFactory())
  131. } else if (isYassonInClassPath()) {
  132. return serializeWithJsonb(serializationCtx, config.jsonbObjectMapperFactory())
  133. }
  134. throw new IllegalArgumentException("Cannot serialize because no JSON or XML serializer found in classpath.")
  135. } else {
  136. def ct = contentType.toLowerCase()
  137. if (containsIgnoreCase(ct, "json") || encoderConfig.contentEncoders().get(ContentTypeExtractor.getContentTypeWithoutCharset(ct)) == ContentType.JSON) {
  138. if (isJackson2InClassPath()) {
  139. return serializeWithJackson2(serializationCtx, config.jackson2ObjectMapperFactory())
  140. } else if (isJackson1InClassPath()) {
  141. return serializeWithJackson1(serializationCtx, config.jackson1ObjectMapperFactory())
  142. } else if (isGsonInClassPath()) {
  143. return serializeWithGson(serializationCtx, config.gsonObjectMapperFactory())
  144. } else if (isJohnzonInClassPath()) {
  145. return serializeWithJohnzon(serializationCtx, config.johnzonObjectMapperFactory())
  146. } else if (isYassonInClassPath()) {
  147. return serializeWithJsonb(serializationCtx, config.jsonbObjectMapperFactory())
  148. }
  149. throw new IllegalStateException("Cannot serialize object because no JSON serializer found in classpath. Please put Jackson (Databind), Gson, Johnzon, or Yasson in the classpath.")
  150. } else if (containsIgnoreCase(ct, "xml") || encoderConfig.contentEncoders().get(ContentTypeExtractor.getContentTypeWithoutCharset(ct)) == ContentType.XML) {
  151. if (isJAXBInClassPath()) {
  152. return serializeWithJaxb(serializationCtx, config.jaxbObjectMapperFactory())
  153. } else {
  154. throw new IllegalStateException("Cannot serialize object because no XML serializer found in classpath. Please put a JAXB compliant object mapper in classpath.")
  155. }
  156. } else {
  157. def errorMessage = "Cannot serialize because cannot determine how to serialize content-type $contentType"
  158. def encoderType = encoderConfig.contentEncoders().get(ContentTypeExtractor.getContentTypeWithoutCharset(ct))
  159. if (encoderType) {
  160. errorMessage = errorMessage + " as ${encoderType.name()} (no serializer supports this format)"
  161. }
  162. throw new IllegalArgumentException(errorMessage)
  163. }
  164. }
  165. return serializeWithJaxb(serializationCtx, config.jaxbObjectMapperFactory())
  166. }
  167. private
  168. static String serializeWithObjectMapper(ObjectMapperSerializationContext ctx, ObjectMapperType mapperType, ObjectMapperConfig config) {
  169. if (mapperType == ObjectMapperType.JACKSON_2 && isJackson2InClassPath()) {
  170. return serializeWithJackson2(ctx, config.jackson2ObjectMapperFactory())
  171. } else if (mapperType == ObjectMapperType.JACKSON_1 && isJackson1InClassPath()) {
  172. return serializeWithJackson1(ctx, config.jackson1ObjectMapperFactory())
  173. } else if (mapperType == ObjectMapperType.GSON && isGsonInClassPath()) {
  174. return serializeWithGson(ctx, config.gsonObjectMapperFactory())
  175. } else if (mapperType == ObjectMapperType.JAXB && isJAXBInClassPath()) {
  176. return serializeWithJaxb(ctx, config.jaxbObjectMapperFactory())
  177. } else if (mapperType == ObjectMapperType.JOHNZON && isJohnzonInClassPath()) {
  178. return serializeWithJohnzon(ctx, config.johnzonObjectMapperFactory())
  179. } else if (mapperType == ObjectMapperType.JSONB && isYassonInClassPath()) {
  180. return serializeWithJsonb(ctx, config.jsonbObjectMapperFactory())
  181. } else {
  182. def lowerCase = mapperType.toString().toLowerCase()
  183. throw new IllegalArgumentException("Cannot serialize object with mapper $mapperType because $lowerCase doesn't exist in the classpath.")
  184. }
  185. }
  186. private static String serializeWithGson(ObjectMapperSerializationContext ctx, GsonObjectMapperFactory factory) {
  187. new GsonMapper(factory).serialize(ctx)
  188. }
  189. private static String serializeWithJackson1(ObjectMapperSerializationContext ctx, Jackson1ObjectMapperFactory factory) {
  190. new Jackson1Mapper(factory).serialize(ctx)
  191. }
  192. private static String serializeWithJackson2(ObjectMapperSerializationContext ctx, Jackson2ObjectMapperFactory factory) {
  193. new Jackson2Mapper(factory).serialize(ctx)
  194. }
  195. private static String serializeWithJaxb(ObjectMapperSerializationContext ctx, JAXBObjectMapperFactory factory) {
  196. new JaxbMapper(factory).serialize(ctx)
  197. }
  198. private static String serializeWithJohnzon(ObjectMapperSerializationContext ctx, JohnzonObjectMapperFactory factory) {
  199. new JohnzonMapper(factory).serialize(ctx)
  200. }
  201. private static String serializeWithJsonb(ObjectMapperSerializationContext ctx, JsonbObjectMapperFactory factory) {
  202. new JsonbMapper(factory).serialize(ctx)
  203. }
  204. private static def parseWithJaxb(ObjectMapperDeserializationContext ctx, JAXBObjectMapperFactory factory) {
  205. new JaxbMapper(factory).deserialize(ctx)
  206. }
  207. private static def parseWithGson(ObjectMapperDeserializationContext ctx, GsonObjectMapperFactory factory) {
  208. new GsonMapper(factory).deserialize(ctx)
  209. }
  210. static def parseWithJackson1(ObjectMapperDeserializationContext ctx, Jackson1ObjectMapperFactory factory) {
  211. new Jackson1Mapper(factory).deserialize(ctx)
  212. }
  213. static def parseWithJackson2(ObjectMapperDeserializationContext ctx, Jackson2ObjectMapperFactory factory) {
  214. new Jackson2Mapper(factory).deserialize(ctx)
  215. }
  216. static def parseWithJohnzon(ObjectMapperDeserializationContext ctx, JohnzonObjectMapperFactory factory) {
  217. new JohnzonMapper(factory).deserialize(ctx)
  218. }
  219. static def parseWithJsonb(ObjectMapperDeserializationContext ctx, JsonbObjectMapperFactory factory) {
  220. new JsonbMapper(factory).deserialize(ctx)
  221. }
  222. private static ObjectMapperDeserializationContext deserializationContext(ResponseBodyData responseData, Type cls, contentType, charset) {
  223. def ctx = new ObjectMapperDeserializationContextImpl()
  224. ctx.type = cls
  225. ctx.charset = charset
  226. ctx.contentType = contentType
  227. ctx.dataToDeserialize = new DataToDeserialize() {
  228. @Override
  229. String asString() {
  230. return responseData.asString()
  231. }
  232. @Override
  233. byte[] asByteArray() {
  234. return responseData.asByteArray()
  235. }
  236. @Override
  237. InputStream asInputStream() {
  238. return responseData.asInputStream()
  239. }
  240. }
  241. ctx
  242. }
  243. private static ObjectMapperSerializationContext serializationContext(Object object, contentType, charset) {
  244. def ctx = new ObjectMapperSerializationContextImpl()
  245. ctx.charset = charset
  246. ctx.contentType = contentType
  247. ctx.object = object
  248. ctx
  249. }
  250. }