Skip to content

Commit

Permalink
feat(bpdm-system-test): golden record tester module.
Browse files Browse the repository at this point in the history
  • Loading branch information
SujitMBRDI committed Nov 7, 2024
1 parent 7367561 commit 08c2dab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 73 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,29 +64,26 @@ class GateInputFactory(
return BusinessPartnerInputRequest(
externalId = "${seed}_${testRunData.testTime}",
nameParts = listRange.map { "Name Part $seed $it" },
identifiers = createIdentifiers(),
identifiers = emptyList(),
roles = BusinessPartnerRole.entries,
isOwnCompanyData = random.nextBoolean(),
states = createStates(),
states = emptyList(),
legalEntity = LegalEntityRepresentationInputDto(
legalEntityBpn = "BPNL $seed",
legalName = "Legal Name $seed",
shortName = "Short Name $seed",
legalForm = testMetadata.legalForms.random(random),
states = createStates()
legalForm = testMetadata.legalForms.random(random)
),
site = SiteRepresentationInputDto(
siteBpn = "BPNS $seed",
name = "Site Name $seed",
states = createStates()
name = "Site Name $seed"
),
address = AddressRepresentationInputDto(
addressBpn = "BPNA $seed",
name = "Address Name $seed",
addressType = AddressType.AdditionalAddress,
physicalPostalAddress = createPhysicalAddress(),
alternativePostalAddress = createAlternativeAddress(),
states = createStates()
alternativePostalAddress = createAlternativeAddress()
)
)
}
Expand Down
28 changes: 0 additions & 28 deletions docker/system-tester/DOCKER_NOTICE.md

This file was deleted.

37 changes: 0 additions & 37 deletions docker/system-tester/Dockerfile

This file was deleted.

0 comments on commit 08c2dab

Please sign in to comment.