com.github.tomakehurst.wiremock.matching.EqualToJsonPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wiremock-standalone Show documentation
Show all versions of wiremock-standalone Show documentation
A web service test double for all occasions - standalone edition
/*
* Copyright (C) 2016-2022 Thomas Akehurst
*
* 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 com.github.tomakehurst.wiremock.matching;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.JsonNode;
import com.github.tomakehurst.wiremock.common.Json;
import net.javacrumbs.jsonunit.core.Configuration;
import net.javacrumbs.jsonunit.core.Option;
import net.javacrumbs.jsonunit.core.internal.Diff;
import net.javacrumbs.jsonunit.core.listener.Difference;
import net.javacrumbs.jsonunit.core.listener.DifferenceContext;
import net.javacrumbs.jsonunit.core.listener.DifferenceListener;
public class EqualToJsonPattern extends StringValuePattern {
private final JsonNode expected;
private final Boolean ignoreArrayOrder;
private final Boolean ignoreExtraElements;
private final Boolean serializeAsString;
public EqualToJsonPattern(
@JsonProperty("equalToJson") String json,
@JsonProperty("ignoreArrayOrder") Boolean ignoreArrayOrder,
@JsonProperty("ignoreExtraElements") Boolean ignoreExtraElements) {
super(json);
expected = Json.read(json, JsonNode.class);
this.ignoreArrayOrder = ignoreArrayOrder;
this.ignoreExtraElements = ignoreExtraElements;
this.serializeAsString = true;
}
public EqualToJsonPattern(
JsonNode jsonNode, Boolean ignoreArrayOrder, Boolean ignoreExtraElements) {
super(Json.write(jsonNode));
expected = jsonNode;
this.ignoreArrayOrder = ignoreArrayOrder;
this.ignoreExtraElements = ignoreExtraElements;
this.serializeAsString = false;
}
@Override
public MatchResult match(String value) {
final CountingDiffListener diffListener = new CountingDiffListener();
Configuration diffConfig = Configuration.empty().withDifferenceListener(diffListener);
if (shouldIgnoreArrayOrder()) {
diffConfig = diffConfig.withOptions(Option.IGNORING_ARRAY_ORDER);
}
if (shouldIgnoreExtraElements()) {
diffConfig =
diffConfig.withOptions(Option.IGNORING_EXTRA_ARRAY_ITEMS, Option.IGNORING_EXTRA_FIELDS);
}
final JsonNode actual;
final Diff diff;
try {
actual = Json.read(value, JsonNode.class);
diff =
Diff.create(
expected, // JsonUnit knows how to work with JsonNode
actual,
"",
"",
diffConfig);
} catch (Exception e) {
return MatchResult.noMatch();
}
return new MatchResult() {
@Override
public boolean isExactMatch() {
return diff.similar();
}
@Override
public double getDistance() {
diff.similar();
double maxNodes = maxDeepSize(expected, actual);
return diffListener.count / maxNodes;
}
};
}
@JsonProperty("equalToJson")
public Object getSerializedEqualToJson() {
return serializeAsString ? getValue() : Json.read(getValue(), JsonNode.class);
}
public String getEqualToJson() {
return expectedValue;
}
private boolean shouldIgnoreArrayOrder() {
return ignoreArrayOrder != null && ignoreArrayOrder;
}
public Boolean isIgnoreArrayOrder() {
return ignoreArrayOrder;
}
private boolean shouldIgnoreExtraElements() {
return ignoreExtraElements != null && ignoreExtraElements;
}
public Boolean isIgnoreExtraElements() {
return ignoreExtraElements;
}
@Override
public String getExpected() {
return Json.prettyPrint(getValue());
}
private static class CountingDiffListener implements DifferenceListener {
public int count = 0;
@Override
public void diff(Difference difference, DifferenceContext context) {
final int delta = maxDeepSize(difference.getExpected(), difference.getActual());
count += delta == 0 ? 1 : Math.abs(delta);
}
}
public static int maxDeepSize(Object one, Object two) {
return Math.max(one != null ? deepSize(one) : 0, two != null ? deepSize(two) : 0);
}
private static int deepSize(Object nodeObj) {
JsonNode jsonNode = Json.getObjectMapper().convertValue(nodeObj, JsonNode.class);
return Json.deepSize(jsonNode);
}
}