-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add kotlin/xml related test that breaks Jackson 2.12.0
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
src/test/kotlin/com/fasterxml/jackson/integtest/kotlin/Jackson212MissingConstructorTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import com.fasterxml.jackson.dataformat.xml.JacksonXmlModule | ||
import com.fasterxml.jackson.dataformat.xml.XmlFactory | ||
import com.fasterxml.jackson.dataformat.xml.XmlMapper | ||
import com.fasterxml.jackson.integtest.BaseTest | ||
import com.fasterxml.jackson.module.kotlin.registerKotlinModule | ||
import javax.xml.stream.XMLInputFactory | ||
|
||
class Jackson212MissingConstructorTest : BaseTest() | ||
{ | ||
/** | ||
* Succeeds in Jackson 2.11.x, but fails in Jackson 2.12.0 | ||
* See https://github.com/FasterXML/jackson-module-kotlin/issues/396 | ||
*/ | ||
fun testMissingConstructor() | ||
{ | ||
val factory = XmlFactory(XMLInputFactory.newInstance()) | ||
val mapper = XmlMapper(factory, JacksonXmlModule()).registerKotlinModule() | ||
|
||
val xml = "<product><stuff></stuff></product>" | ||
val product: Product = mapper.readValue(xml, Product::class.java) | ||
|
||
assertEquals(Product(null), product) | ||
} | ||
|
||
private data class Stuff(val str: String?) | ||
private data class Product(val stuff: Stuff?) | ||
} |