|
|
@ -130,10 +130,10 @@ public class ImportHostingAssets extends ImportOfficeData {
|
|
|
|
assertThat(firstOfEachType(5, IPV4_NUMBER)).isEqualToIgnoringWhitespace("""
|
|
|
|
assertThat(firstOfEachType(5, IPV4_NUMBER)).isEqualToIgnoringWhitespace("""
|
|
|
|
{
|
|
|
|
{
|
|
|
|
1000363=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.34),
|
|
|
|
1000363=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.34),
|
|
|
|
|
|
|
|
1000381=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.52),
|
|
|
|
1000402=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.73),
|
|
|
|
1000402=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.73),
|
|
|
|
1000433=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.104),
|
|
|
|
1000433=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.104),
|
|
|
|
1000473=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.144),
|
|
|
|
1000457=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.128)
|
|
|
|
1000574=HsHostingAssetEntity(IPV4_NUMBER, 83.223.95.245)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
""");
|
|
|
|
""");
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -278,10 +278,10 @@ public class ImportHostingAssets extends ImportOfficeData {
|
|
|
|
bookingItems.forEach(this::persistRecursively);
|
|
|
|
bookingItems.forEach(this::persistRecursively);
|
|
|
|
}).assertSuccessful();
|
|
|
|
}).assertSuccessful();
|
|
|
|
|
|
|
|
|
|
|
|
persistHostingAssetsOfType(IPV4_NUMBER);
|
|
|
|
|
|
|
|
persistHostingAssetsOfType(CLOUD_SERVER);
|
|
|
|
persistHostingAssetsOfType(CLOUD_SERVER);
|
|
|
|
persistHostingAssetsOfType(MANAGED_SERVER);
|
|
|
|
persistHostingAssetsOfType(MANAGED_SERVER);
|
|
|
|
persistHostingAssetsOfType(MANAGED_WEBSPACE);
|
|
|
|
persistHostingAssetsOfType(MANAGED_WEBSPACE);
|
|
|
|
|
|
|
|
persistHostingAssetsOfType(IPV4_NUMBER);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void persistRecursively(final Integer key, final HsBookingItemEntity bi) {
|
|
|
|
private void persistRecursively(final Integer key, final HsBookingItemEntity bi) {
|
|
|
@ -352,7 +352,7 @@ public class ImportHostingAssets extends ImportOfficeData {
|
|
|
|
final var hive_id = rec.getInteger("hive_id");
|
|
|
|
final var hive_id = rec.getInteger("hive_id");
|
|
|
|
final var created = rec.getLocalDate("created");
|
|
|
|
final var created = rec.getLocalDate("created");
|
|
|
|
final var cancelled = rec.getLocalDate("cancelled");
|
|
|
|
final var cancelled = rec.getLocalDate("cancelled");
|
|
|
|
final var cur_inet_addr_id = rec.getInteger("cur_inet_addr_id"); // FIXME: import MANAGED_WEBSPACE
|
|
|
|
final var cur_inet_addr_id = rec.getInteger("cur_inet_addr_id");
|
|
|
|
final var old_inet_addr_id = rec.getInteger("old_inet_addr_id"); // FIXME: assert that null
|
|
|
|
final var old_inet_addr_id = rec.getInteger("old_inet_addr_id"); // FIXME: assert that null
|
|
|
|
final var free = rec.getBoolean("free"); // FIXME: assert that "free webspace => in customer managed server", otherwise ignore
|
|
|
|
final var free = rec.getBoolean("free"); // FIXME: assert that "free webspace => in customer managed server", otherwise ignore
|
|
|
|
|
|
|
|
|
|
|
@ -377,6 +377,10 @@ public class ImportHostingAssets extends ImportOfficeData {
|
|
|
|
if (haType == MANAGED_SERVER) {
|
|
|
|
if (haType == MANAGED_SERVER) {
|
|
|
|
hive(hive_id).serverRef.set(asset);
|
|
|
|
hive(hive_id).serverRef.set(asset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (cur_inet_addr_id != null) {
|
|
|
|
|
|
|
|
ipNumber(cur_inet_addr_id).setAssignedToAsset(asset);
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// once we know all hosting assets, we can set the parentAsset for managed webspaces
|
|
|
|
// once we know all hosting assets, we can set the parentAsset for managed webspaces
|
|
|
|