blob: b87162b3301a211651237cd59a10c34f93746ef6 [file] [log] [blame]
/*
* Copyright 2016 Open Networking Laboratory
*
* 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 org.onosproject.codec.impl;
import com.fasterxml.jackson.databind.JsonNode;
import org.hamcrest.Description;
import org.hamcrest.TypeSafeDiagnosingMatcher;
import org.onosproject.net.region.Region;
/**
* Hamcrest matcher for region.
*/
public final class RegionJsonMatcher extends TypeSafeDiagnosingMatcher<JsonNode> {
private final Region region;
private RegionJsonMatcher(Region region) {
this.region = region;
}
@Override
protected boolean matchesSafely(JsonNode jsonRegion, Description description) {
// check id
String jsonRegionId = jsonRegion.get("id").asText();
String regionId = region.id().toString();
if (!jsonRegionId.equals(regionId)) {
description.appendText("region id was " + jsonRegionId);
return false;
}
// check type
String jsonType = jsonRegion.get("type").asText();
String type = region.type().toString();
if (!jsonType.equals(type)) {
description.appendText("type was " + jsonType);
return false;
}
// check name
String jsonName = jsonRegion.get("name").asText();
String name = region.name();
if (!jsonName.equals(name)) {
description.appendText("name was " + jsonName);
return false;
}
// check size of master array
JsonNode jsonMasters = jsonRegion.get("masters");
if (jsonMasters.size() != region.masters().size()) {
description.appendText("masters size was " + jsonMasters.size());
return false;
}
// TODO: check the content inside masters
return true;
}
@Override
public void describeTo(Description description) {
description.appendText(region.toString());
}
/**
* Factory to allocate a region matcher.
*
* @param region region object we are looking for
* @return matcher
*/
public static RegionJsonMatcher matchesRegion(Region region) {
return new RegionJsonMatcher(region);
}
}