software.xdev.mockserver.serialization.ExpectationSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
MockServer NeoLight Core
/*
* Copyright © 2024 XDEV Software (https://xdev.software)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package software.xdev.mockserver.serialization;
import static software.xdev.mockserver.character.Character.NEW_LINE;
import static software.xdev.mockserver.util.StringUtils.isBlank;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.function.BiFunction;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import software.xdev.mockserver.mock.Expectation;
import software.xdev.mockserver.serialization.model.ExpectationDTO;
public class ExpectationSerializer implements Serializer
{
private static final Logger LOG = LoggerFactory.getLogger(ExpectationSerializer.class);
private final ObjectWriter objectWriter;
private final ObjectMapper objectMapper;
private final JsonArraySerializer jsonArraySerializer = new JsonArraySerializer();
public ExpectationSerializer()
{
this(false);
}
public ExpectationSerializer(final boolean serialiseDefaultValues)
{
this.objectWriter = ObjectMapperFactory.createObjectMapper(true, serialiseDefaultValues);
this.objectMapper = ObjectMapperFactory.createObjectMapper();
}
@Override
public String serialize(final Expectation expectation)
{
if(expectation == null)
{
return "";
}
try
{
return this.objectWriter.writeValueAsString(new ExpectationDTO(expectation));
}
catch(final Exception e)
{
throw new IllegalStateException(
"Exception while serializing expectation to JSON with value " + expectation,
e);
}
}
public String serialize(final List expectations)
{
return this.serialize(expectations.toArray(new Expectation[0]));
}
public String serialize(final Expectation... expectations)
{
try
{
if(expectations == null || expectations.length == 0)
{
return "[]";
}
final ExpectationDTO[] expectationDTOs = new ExpectationDTO[expectations.length];
for(int i = 0; i < expectations.length; i++)
{
expectationDTOs[i] = new ExpectationDTO(expectations[i]);
}
return this.objectWriter.writeValueAsString(expectationDTOs);
}
catch(final Exception e)
{
throw new IllegalStateException(
"Exception while serializing expectation to JSON with value " + Arrays.asList(expectations),
e);
}
}
@Override
public Expectation deserialize(final String jsonExpectation)
{
try
{
final ExpectationDTO expectationDTO = this.objectMapper.readValue(jsonExpectation, ExpectationDTO.class);
if(expectationDTO != null)
{
return expectationDTO.buildObject();
}
}
catch(final Exception ex)
{
throw new IllegalArgumentException(
"exception while parsing [" + jsonExpectation + "] for Expectation",
ex);
}
return null;
}
@Override
public Class supportsType()
{
return Expectation.class;
}
public Expectation[] deserializeArray(final String jsonExpectations, final boolean allowEmpty)
{
return this.deserializeArray(jsonExpectations, allowEmpty, (s, expectation) -> expectation);
}
public Expectation[] deserializeArray(
final String jsonExpectations,
final boolean allowEmpty,
final BiFunction, List> expectationModifier)
{
if(isBlank(jsonExpectations))
{
throw new IllegalArgumentException(
"1 error:" + NEW_LINE + " - an expectation or expectation array is required but value was \""
+ jsonExpectations + "\"");
}
final List expectations = new ArrayList<>();
final List validationErrorsList = new ArrayList<>();
final List jsonExpectationList =
this.jsonArraySerializer.splitJSONArrayToJSONNodes(jsonExpectations);
if(!jsonExpectationList.isEmpty())
{
for(int i = 0; i < jsonExpectationList.size(); i++)
{
final String jsonExpectation = JacksonUtils.prettyPrint(jsonExpectationList.get(i));
if(jsonExpectationList.size() > 100)
{
if(LOG.isDebugEnabled())
{
LOG.debug(
"Processing JSON expectation {} of {}: {}",
i + 1,
jsonExpectationList.size(),
jsonExpectation);
}
else if(LOG.isInfoEnabled())
{
LOG.info("Processing JSON expectation {} of {}", i + 1, jsonExpectationList.size());
}
}
try
{
expectations.addAll(expectationModifier.apply(
jsonExpectation,
Collections.singletonList(this.deserialize(jsonExpectation))));
}
catch(final IllegalArgumentException iae)
{
validationErrorsList.add(iae.getMessage());
}
}
if(!validationErrorsList.isEmpty())
{
if(validationErrorsList.size() > 1)
{
throw new IllegalArgumentException(("[" + NEW_LINE
+ String.join("," + NEW_LINE + NEW_LINE, validationErrorsList))
.replaceAll(NEW_LINE, NEW_LINE + " ")
+ NEW_LINE + "]");
}
else
{
throw new IllegalArgumentException(validationErrorsList.get(0));
}
}
}
else if(!allowEmpty)
{
throw new IllegalArgumentException(
"1 error:" + NEW_LINE + " - an expectation or array of expectations is required");
}
return expectations.toArray(new Expectation[0]);
}
}