Skip to content

Commit

Permalink
Write regression test for FasterXML#109. No further changes needed be…
Browse files Browse the repository at this point in the history
…yond the databind changes.
  • Loading branch information
nbauernfeind committed Apr 26, 2016
1 parent 1029739 commit 1dd3b23
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package com.fasterxml.jackson.module.scala.ser

import com.fasterxml.jackson.annotation.JsonPropertyOrder
import com.fasterxml.jackson.databind.MapperFeature
import com.fasterxml.jackson.module.scala.DefaultScalaModule
import org.junit.runner.RunWith
import org.scalatest.junit.JUnitRunner

object TransientFieldTest {
@JsonPropertyOrder(Array("x"))
class ClassyTransient {
@transient
val value = 3
def getValue = value
def getX = 42
}
}

@RunWith(classOf[JUnitRunner])
class TransientFieldTest extends SerializerTest {
import TransientFieldTest._

val module = DefaultScalaModule

"DefaultScalaModule" should "normally ignore @transient annotations" in {
serialize(new ClassyTransient) shouldBe """{"x":42,"value":3}"""
}

it should "respect @transient annotation when feature enabled" in {
serialize(new ClassyTransient, newMapper.enable(MapperFeature.PROPAGATE_TRANSIENT_MARKER)) shouldBe """{"x":42}"""
}
}

0 comments on commit 1dd3b23

Please sign in to comment.