Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check num of fields in JSON match num of fields in case class #271

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

tilumi
Copy link

@tilumi tilumi commented Aug 1, 2018

Following test will failed since the case class accidentally parsed to a different case class,
so I think check number of fields is necessary.

trait Entity
case class Alert(name: String) extends Entity
case class PerfCounterAlert(name: String, expression: String) extends Entity

implicit val perfCounterAlertFormat = jsonFormat2(PerfCounterAlert)
implicit val alertFormat = jsonFormat1(Alert)
implicit val entityFormat = jsonFormat[Entity](
      new JsonReader[Entity]{
        override def read(json: JsValue): Entity = Try(alertFormat.read(json)).getOrElse(perfCounterAlertFormat.read(json))
      }, new JsonWriter[Entity]{
        override def write(obj: Entity): JsValue = obj match {
          case entity: Alert => alertFormat.write(entity)
          case entity: PerfCounterAlert => perfCounterAlertFormat.write(entity)
        }
      }
    )

val perfCounterAlert = PerfCounterAlert("counter1", "value > 0")
val json = perfCounterAlert.toJson.prettyPrint
val entity = json.parseJson.convertTo[Entity]
println(entity)
// shows Alert("counter1")
assert(entity == perfCounterAlert)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant