aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/fakes/entities/rep/ExportPatientGen.scala
blob: e3ef6bc2b4d4aae70f718bd95a079403ffbbfa2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package xyz.driver.pdsuidomain.fakes.entities.rep

import xyz.driver.core.generators._
import xyz.driver.entities.labels.Label
import xyz.driver.pdsuicommon.domain.{LongId, UuidId}
import xyz.driver.pdsuidomain.fakes.entities.common._
import xyz.driver.pdsuidomain.entities._
import xyz.driver.pdsuidomain.entities.export.patient._
import xyz.driver.pdsuidomain.fakes.entities.common.{nextLocalDate, nextLongId}

object ExportPatientGen {
  private val maxItemsInCollectionNumber = 3

  def nextDocumentType(documentTypeId: LongId[DocumentType] = nextLongId): DocumentType = {
    DocumentType(
      documentTypeId,
      nextString()
    )
  }

  def nextProviderType(providerTypeId: LongId[ProviderType] = nextLongId): ProviderType = {
    ProviderType(
      providerTypeId,
      nextString()
    )
  }

  def nextExportPatientLabelEvidenceDocument(documentId: LongId[Document]): ExportPatientLabelEvidenceDocument = {
    ExportPatientLabelEvidenceDocument(
      documentId = documentId,
      requestId = RecordRequestId(nextUuid()),
      documentType = nextDocumentType(),
      providerType = nextProviderType(),
      date = nextLocalDate
    )
  }

  def nextExportPatientLabelEvidence(documentId: LongId[Document]): ExportPatientLabelEvidence = {
    ExportPatientLabelEvidence(
      id = nextLongId[ExtractedData],
      value = nextFuzzyValue(),
      evidenceText = nextString(),
      document = nextExportPatientLabelEvidenceDocument(documentId)
    )
  }

  def nextExportPatientLabel(documentId: LongId[Document]): ExportPatientLabel = {
    ExportPatientLabel(
      id = nextLongId[Label],
      evidences = List.fill(
        nextInt(maxItemsInCollectionNumber, minValue = 0)
      )(nextExportPatientLabelEvidence(documentId))
    )
  }

  def nextExportPatientWithLabels(documentId: LongId[Document]): ExportPatientWithLabels = {
    ExportPatientWithLabels(
      patientId = UuidId[xyz.driver.pdsuidomain.entities.Patient](nextUuid()),
      labelVersion = scala.util.Random.nextLong(),
      labels = List.fill(
        nextInt(maxItemsInCollectionNumber, minValue = 0)
      )(nextExportPatientLabel(documentId))
    )
  }

}