aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/xyz/driver/pdsuidomain/formats/json/DocumentFormatSuite.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/xyz/driver/pdsuidomain/formats/json/DocumentFormatSuite.scala')
-rw-r--r--src/test/scala/xyz/driver/pdsuidomain/formats/json/DocumentFormatSuite.scala73
1 files changed, 73 insertions, 0 deletions
diff --git a/src/test/scala/xyz/driver/pdsuidomain/formats/json/DocumentFormatSuite.scala b/src/test/scala/xyz/driver/pdsuidomain/formats/json/DocumentFormatSuite.scala
new file mode 100644
index 0000000..5e33805
--- /dev/null
+++ b/src/test/scala/xyz/driver/pdsuidomain/formats/json/DocumentFormatSuite.scala
@@ -0,0 +1,73 @@
+package xyz.driver.pdsuidomain.formats.json
+
+import java.time.{LocalDate, LocalDateTime}
+
+import spray.json._
+import org.scalatest.{FlatSpec, Matchers}
+import xyz.driver.pdsuicommon.domain.{LongId, TextJson}
+import xyz.driver.pdsuidomain.entities.Document
+
+class DocumentFormatSuite extends FlatSpec with Matchers {
+ import xyz.driver.pdsuidomain.formats.json.document._
+
+ "Json format for Document" should "read and write correct JSON" in {
+ val orig = Document(
+ id = LongId(1),
+ status = Document.Status.New,
+ assignee = None,
+ previousStatus = None,
+ previousAssignee = None,
+ lastActiveUserId = None,
+ lastUpdate = LocalDateTime.parse("2017-08-10T18:00:00"),
+ recordId = LongId(101),
+ physician = Some("physician"),
+ typeId = Some(LongId(10)),
+ providerName = Some("provider 21"),
+ providerTypeId = Some(LongId(21)),
+ institutionName = Some("institution name"),
+ requiredType = Some(Document.RequiredType.OPN),
+ meta = None,
+ startDate = None,
+ endDate = None,
+ labelVersion = 0
+ )
+ val writtenJson = documentFormat.write(orig)
+
+ writtenJson should be(
+ """{"id":1,"recordId":101,"physician":"physician","typeId":10,"provider":"provider 21","providerTypeId":21,
+ "requiredType":"OPN","institutionName":"institution name","startDate":null,"endDate":null,"status":"New","assignee":null,"previousStatus":null,
+ "previousAssignee":null,"lastActiveUser":null,"lastUpdate":"2017-08-10T18:00Z","meta":null,"labelVersion":0}""".parseJson)
+
+ val createDocumentJson =
+ """{"recordId":101,"physician":"physician","typeId":10,"provider":"provider 21","providerTypeId":21}""".parseJson
+ val expectedCreatedDocument = orig.copy(
+ id = LongId(0),
+ lastUpdate = LocalDateTime.MIN,
+ requiredType = None,
+ institutionName = None
+ )
+ val parsedCreatedDocument = documentFormat.read(createDocumentJson)
+ parsedCreatedDocument should be(expectedCreatedDocument)
+
+ val updateDocumentJson =
+ """{"startDate":"2017-08-10","endDate":"2018-08-10","meta":{"startPage":1.0,"endPage":2.0}}""".parseJson
+ val expectedUpdatedDocument = orig.copy(
+ startDate = Some(LocalDate.parse("2017-08-10")),
+ endDate = Some(LocalDate.parse("2018-08-10")),
+ meta = Some(TextJson(Document.Meta(startPage = 1.0, endPage = 2.0)))
+ )
+ val parsedUpdatedDocument = applyUpdateToDocument(updateDocumentJson, orig)
+ parsedUpdatedDocument should be(expectedUpdatedDocument)
+ }
+
+ "Json format for Document.Meta" should "read and write correct JSON" in {
+ val meta = Document.Meta(startPage = 1.0, endPage = 2.0)
+ val writtenJson = documentMetaFormat.write(meta)
+ writtenJson should be("""{"startPage":1.0,"endPage":2.0}""".parseJson)
+
+ val metaJson = """{"startPage":1.0,"endPage":2.0}""".parseJson
+ val parsedMeta = documentMetaFormat.read(metaJson)
+ parsedMeta should be(meta)
+ }
+
+}