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

ste.xtest.logging.LogRecordAssert Maven / Gradle / Ivy

There is a newer version: 3.8.2
Show newest version
/*
 * xTest
 * Copyright (C) 2015 Stefano Fornari
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Affero General Public License version 3 as published by
 * the Free Software Foundation with the addition of the following permission
 * added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED
 * WORK IN WHICH THE COPYRIGHT IS OWNED BY Stefano Fornari, Stefano Fornari
 * DISCLAIMS THE WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program; if not, see http://www.gnu.org/licenses or write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301 USA.
 */
package ste.xtest.logging;

import java.util.logging.Level;
import java.util.logging.LogRecord;
import org.assertj.core.api.AbstractAssert;
import org.assertj.core.error.BasicErrorMessageFactory;
import org.assertj.core.internal.Failures;

/**
 *
 * @author ste
 */
public class LogRecordAssert extends AbstractAssert {
    
    protected LogRecordAssert(final LogRecord o) {
        super(o, LogRecordAssert.class);
    }
    
    public LogRecordAssert hasLevel(final Level expected) {
        if (actual.getLevel().equals(expected)) {
            return this;
        }
        
        throw Failures.instance().failure(
            info, 
            new BasicErrorMessageFactory(
                "expected to be at level %s but was %s", 
                String.valueOf(expected),
                String.valueOf(actual.getLevel())
            )
        );
    }
    
    public LogRecordAssert hasMessage(final String expected) {
        if (actual.getMessage().equals(expected)) {
            return this;
        }
        
        throw Failures.instance().failure(
            info, 
            new BasicErrorMessageFactory(
                "expecting message <%s> but was <%s>", 
                expected,
                String.valueOf(actual.getMessage())
            )
        );
    }
    
    public LogRecord getActual() {
        return actual;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy