integrate-sha512-password-hashing #68
@ -68,11 +68,11 @@ class HsCloudServerHostingAssetValidatorUnitTest {
|
|||||||
@Test
|
@Test
|
||||||
void validatesBookingItemType() {
|
void validatesBookingItemType() {
|
||||||
// given
|
// given
|
||||||
final var mangedServerHostingAssetEntity = linkBookingItem(HsHostingAssetEntity.builder()
|
final var mangedServerHostingAssetEntity = HsHostingAssetEntity.builder()
|
||||||
hsh-michaelhoennig marked this conversation as resolved
Outdated
|
|||||||
.type(MANAGED_SERVER)
|
.type(MANAGED_SERVER)
|
||||||
.identifier("xyz00")
|
.identifier("xyz00")
|
||||||
.bookingItem(TEST_CLOUD_SERVER_BOOKING_ITEM.toBuilder().build())
|
.bookingItem(HsBookingItemEntity.builder().type(HsBookingItemType.CLOUD_SERVER).build())
|
||||||
.build());
|
.build();
|
||||||
final var validator = HsHostingAssetEntityValidatorRegistry.forType(mangedServerHostingAssetEntity.getType());
|
final var validator = HsHostingAssetEntityValidatorRegistry.forType(mangedServerHostingAssetEntity.getType());
|
||||||
|
|
||||||
// when
|
// when
|
||||||
@ -103,9 +103,4 @@ class HsCloudServerHostingAssetValidatorUnitTest {
|
|||||||
"'CLOUD_SERVER:xyz00.parentAsset' must be null but is set to D-???????-?:null",
|
"'CLOUD_SERVER:xyz00.parentAsset' must be null but is set to D-???????-?:null",
|
||||||
"'CLOUD_SERVER:xyz00.assignedToAsset' must be null but is set to D-???????-?:null");
|
"'CLOUD_SERVER:xyz00.assignedToAsset' must be null but is set to D-???????-?:null");
|
||||||
}
|
}
|
||||||
|
|
||||||
private static HsHostingAssetEntity linkBookingItem(final HsHostingAssetEntity mangedServerHostingAssetEntity) {
|
|
||||||
mangedServerHostingAssetEntity.getBookingItem().setRelatedHostingAsset(mangedServerHostingAssetEntity);
|
|
||||||
return mangedServerHostingAssetEntity;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user
Änderung nötig?