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

es.iti.wakamiti.rest.helpers.TextHelper Maven / Gradle / Ivy

The newest version!
/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 */
package es.iti.wakamiti.rest.helpers;


import io.restassured.http.ContentType;
import es.iti.commons.jext.Extension;
import es.iti.wakamiti.rest.ContentTypeHelper;
import es.iti.wakamiti.rest.MatchMode;
import org.junit.ComparisonFailure;


/**
 * @author Luis Iñesta Gelabert - [email protected] | [email protected]
 */
@Extension(
        provider =  "es.iti.wakamiti",
        name = "rest-text-helper",
        version = "2.6",
        extensionPoint =  "es.iti.wakamiti.rest.ContentTypeHelper"
)
public class TextHelper implements ContentTypeHelper {


    @Override
    public ContentType contentType() {
        return ContentType.TEXT;
    }


    @Override
    public void assertContent(String expected, String actual, MatchMode matchMode) {
        switch (matchMode) {
            case STRICT:
            case STRICT_ANY_ORDER:
                if (!actual.trim().equals(expected.trim())) {
                    throw new ComparisonFailure("Text differences", expected, actual);
                }
                break;
            case LOOSE:
                if (!actual.trim().contains(expected.trim())) {
                    throw new ComparisonFailure("Text differences", expected, actual);
                }
        }
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy