Compare commits

..

No commits in common. "ca5cde5f5590ed9de284bd16324753d043cb6f93" and "c300a89ab8b56455a12c54e630159c58e60d68e7" have entirely different histories.

3 changed files with 29 additions and 47 deletions

View File

@ -26,11 +26,9 @@ class HsDomainSetupHostingAssetValidator extends HostingAssetEntityValidator {
@Override
public List<String> validateEntity(final HsHostingAsset assetEntity) {
final var violations = super.validateEntity(assetEntity);
if (!violations.isEmpty() || assetEntity.isLoaded()) {
// it makes no sense to do DNS-based validation
// if the entity is already persisted or
// if the identifier (domain name) or structure is already invalid
final var violations = // new ArrayList<String>();
super.validateEntity(assetEntity);
if (!violations.isEmpty()) {
return violations;
}

View File

@ -1,9 +1,7 @@
package net.hostsharing.hsadminng.hs.hosting.asset;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import lombok.SneakyThrows;
import net.hostsharing.hsadminng.config.JsonObjectMapperConfiguration;
import net.hostsharing.hsadminng.context.Context;
@ -578,6 +576,7 @@ public class HsHostingAssetControllerRestTest {
when(emf.createEntityManager(any(Map.class))).thenReturn(em);
when(emf.createEntityManager(any(SynchronizationType.class))).thenReturn(em);
when(emf.createEntityManager(any(SynchronizationType.class), any(Map.class))).thenReturn(em);
// doNothing().when(transactionManager).commit(any());
}
@ParameterizedTest
@ -646,7 +645,7 @@ public class HsHostingAssetControllerRestTest {
entry("includes", false),
entry("letsencrypt", false),
entry("multiviews", false),
entry("fcgi-php-bin", "/usr/lib/cgi-bin/php-orig"),
entry("fcgi-php-bin", "/usr/lib/cgi-bin/php8"),
entry("passenger-nodejs", "/usr/bin/node-js7"),
entry("passenger-python", "/usr/bin/python6"),
entry("passenger-ruby", "/usr/bin/ruby5"),
@ -672,8 +671,7 @@ public class HsHostingAssetControllerRestTest {
"autoconfig": true,
"multiviews": true,
"passenger": false,
"fcgi-php-bin": null,
"passenger-nodejs": "/usr/bin/node-js8",
"fcgi-php-bin": "/usr/lib/cgi-bin/php9",
"subdomains": ["www","test"]
}
}
@ -687,20 +685,11 @@ public class HsHostingAssetControllerRestTest {
"type": "DOMAIN_HTTP_SETUP",
"identifier": "example.org|HTTP",
"caption": "some updated fake Domain-HTTP-Setup",
"alarmContact": null
}
""")))
.andReturn();
// and the config properties do match not just leniently but even strictly
final var actualConfig = formatJsonNode(result.getResponse().getContentAsString());
final var expectedConfig = formatJsonNode("""
{
"alarmContact": null,
"config": {
"autoconfig": true,
"cgi": false,
"fastcgi": false,
// "fcgi-php-bin" : "/usr/lib/cgi-bin/php", TODO.spec: do we want defaults to work like initializers?
"greylisting": false,
"htdocsfallback": false,
"includes": false,
@ -709,24 +698,20 @@ public class HsHostingAssetControllerRestTest {
"multiviews": true,
"passenger": false,
"passenger-errorpage": true,
"passenger-nodejs" : "/usr/bin/node-js8",
"passenger-nodejs": "/usr/bin/node-js7",
"passenger-python": "/usr/bin/python6",
"passenger-ruby": "/usr/bin/ruby5",
"fcgi-php-bin": "/usr/lib/cgi-bin/php9",
"subdomains": ["www","test"]
}
}
""");
assertThat(actualConfig).isEqualTo(expectedConfig);
}
""")))
.andReturn();
private static final ObjectMapper SORTED_MAPPER = new ObjectMapper();
static {
SORTED_MAPPER.configure(SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS, true);
}
private static String formatJsonNode(final String json) throws JsonProcessingException {
final var node = SORTED_MAPPER.readTree(json.replaceAll("//.*", "")).path("config");
final var obj = SORTED_MAPPER.treeToValue(node, Object.class);
return SORTED_MAPPER.writerWithDefaultPrettyPrinter().writeValueAsString(obj);
// and the config properties do match not just leniently but even strictly
final var resultBody = new ObjectMapper().readTree(result.getResponse().getContentAsString());
for (int n = 0; n < resultBody.size(); ++n) {
// assertThat(resultBody.get(n).path("config")).isEqualTo(testCase.expectedConfig(n));
}
}
}

View File

@ -1450,7 +1450,6 @@ public class ImportHostingAssets extends BaseOfficeDataImport {
// nothing here
))
.build();
domainSetupAsset.markAsLoaded(); // to skip setup verification
domainSetupsByName.put(domain_name, domainSetupAsset);
domainSetupAssets.put(domain_id, domainSetupAsset);
domainSetupAsset.setSubHostingAssets(new ArrayList<>());