aboutsummaryrefslogblamecommitdiff
path: root/src/test/scala/xyz/driver/pdsuidomain/formats/json/MedicalRecordHistoryFormatSuite.scala
blob: 88240cdb528e3c26aebedcd049602a2b028ef385 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                           


                              
                                         

                                           


                                                                      
                                                            




                                                                                  
                                                  





                                                              
                                                                                           






                                                                     
package xyz.driver.pdsuidomain.formats.json

import java.time.LocalDateTime

import org.scalatest.{FlatSpec, Matchers}
import spray.json._
import xyz.driver.pdsuicommon.domain.LongId
import xyz.driver.pdsuidomain.entities.MedicalRecordHistory

class MedicalRecordHistoryFormatSuite extends FlatSpec with Matchers {
  import xyz.driver.pdsuidomain.formats.json.recordhistory._

  "Json format for MedicalRecordHistory" should "read and write correct JSON" in {
    val recordHistory = MedicalRecordHistory(
      id = LongId(10),
      recordId = LongId(1),
      executor = xyz.driver.core.Id("userId-001"),
      state = MedicalRecordHistory.State.Clean,
      action = MedicalRecordHistory.Action.Start,
      created = LocalDateTime.parse("2017-08-10T18:00:00")
    )
    val writtenJson = recordHistoryFormat.write(recordHistory)

    writtenJson should be("""{"id":10,"executor":"userId-001","recordId":1,"state":"Clean",
        "action":"Start","created":"2017-08-10T18:00Z"}""".parseJson)

    val parsedRecordHistory = recordHistoryFormat.read(writtenJson)
    parsedRecordHistory should be(recordHistory)
  }

}