All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.karsaig.approvalcrest.matcher.NullMatcher Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 Shazam Entertainment Limited
 * 
 * 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.karsaig.approvalcrest.matcher;

import static com.github.karsaig.approvalcrest.CyclicReferenceDetector.getClassesWithCircularReferences;
import static com.github.karsaig.approvalcrest.matcher.GsonProvider.gson;
import static org.hamcrest.CoreMatchers.nullValue;

import org.hamcrest.Description;

/**
 * {@link DiagnosingCustomisableMatcher} implementation which verifies a bean is null.
 */
public class NullMatcher extends DiagnosingCustomisableMatcher {
	public NullMatcher(T expected) {
		super(expected);
	}

    @Override
    protected boolean matches(Object actual, Description mismatchDescription) {
        if (actual != null) {
            circularReferenceTypes.addAll(getClassesWithCircularReferences(actual,matcherConfiguration ));
            String actualJson = gson(matcherConfiguration, circularReferenceTypes).toJson(actual);
            return appendMismatchDescription(mismatchDescription, "null", actualJson, "actual is not null");
        }
        return true;
    }

	@Override
	public void describeTo(Description description) {
		nullValue().describeTo(description);
	}

    @Override
    public String toString() {
        return "SameBeanAs null matcher";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy