/** * Powerunit - A JDK1.8 test framework * Copyright (C) 2014 Mathieu Boretti. * * This file is part of Powerunit * * Powerunit is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Powerunit 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 General Public License * along with Powerunit. If not, see <http://www.gnu.org/licenses/>. */ package ch.powerunit; import java.util.regex.Pattern; import org.hamcrest.Matchers; /** * DSL for assertion on string result. * <p> * This interface is returned by the various methods * {@link TestSuite#assertThat(String) assertThat} exposed by {@link TestSuite}. * * @author borettim * */ public interface AssertThatString extends AssertThatCastableObject<String> { /** * Check that a string another string. * <p> * This method is a shortcut to <code>is(containsString(substring))</code>. * <br> * <br> * <i>By default, assertion can only be used from the main thread of the * test ; When used from another thread, the assertion will be lost. In the * case the {@link Test#fastFail() fastFail} attribute of {@link Test @Test} * annotation is used, the assertion may not be lost, in case the thread use * an assertion method from the test object instance. </i> * * @param substring * the other string. * @return true if the assertion is valid ; If the assertion is false, * depending on {@link Test#fastFail()} : If <code>true</code>, then * fail the test, else, return false and the test will be failed * later. * @see Test#fastFail() The documentation of the <code>fastFail</code> * attribute of the <code>@Test</code> annotation, regarding the action * done by this assertion. */ default boolean containsString(String substring) { return is(Matchers.containsString(substring)); } /** * Check that a string starts with another one. * <p> * This method is a shortcut to <code>is(startsWith(prefix))</code>. <br> * <br> * <i>By default, assertion can only be used from the main thread of the * test ; When used from another thread, the assertion will be lost. In the * case the {@link Test#fastFail() fastFail} attribute of {@link Test @Test} * annotation is used, the assertion may not be lost, in case the thread use * an assertion method from the test object instance. </i> * * @param prefix * the prefix. * @return true if the assertion is valid ; If the assertion is false, * depending on {@link Test#fastFail()} : If <code>true</code>, then * fail the test, else, return false and the test will be failed * later. * @see Test#fastFail() The documentation of the <code>fastFail</code> * attribute of the <code>@Test</code> annotation, regarding the action * done by this assertion. */ default boolean startsWith(String prefix) { return is(Matchers.startsWith(prefix)); } /** * Check that a string ends with another one. * <p> * This method is a shortcut to <code>is(endsWith(prefix))</code>. <br> * <br> * <i>By default, assertion can only be used from the main thread of the * test ; When used from another thread, the assertion will be lost. In the * case the {@link Test#fastFail() fastFail} attribute of {@link Test @Test} * annotation is used, the assertion may not be lost, in case the thread use * an assertion method from the test object instance. </i> * * @param prefix * the prefix. * @return true if the assertion is valid ; If the assertion is false, * depending on {@link Test#fastFail()} : If <code>true</code>, then * fail the test, else, return false and the test will be failed * later. * @see Test#fastFail() The documentation of the <code>fastFail</code> * attribute of the <code>@Test</code> annotation, regarding the action * done by this assertion. */ default boolean endsWith(String prefix) { return is(Matchers.endsWith(prefix)); } /** * Validate a string with a {@link java.util.regex.Pattern}. * <p> * This method is a shortcut to <code>is(matchesRegex(pattern))</code>. <br> * <br> * <i>By default, assertion can only be used from the main thread of the * test ; When used from another thread, the assertion will be lost. In the * case the {@link Test#fastFail() fastFail} attribute of {@link Test @Test} * annotation is used, the assertion may not be lost, in case the thread use * an assertion method from the test object instance. </i> * * @param pattern * the pattern to be used. * @return true if the assertion is valid ; If the assertion is false, * depending on {@link Test#fastFail()} : If <code>true</code>, then * fail the test, else, return false and the test will be failed * later. * @see Test#fastFail() The documentation of the <code>fastFail</code> * attribute of the <code>@Test</code> annotation, regarding the action * done by this assertion. */ default boolean matchesRegex(Pattern pattern) { return is(TestSuite.DSL.matchesRegex(pattern)); } /** * Validate a string with a regex. * <p> * This method is a shortcut to <code>is(matchesRegex(regex))</code>. <br> * <br> * <i>By default, assertion can only be used from the main thread of the * test ; When used from another thread, the assertion will be lost. In the * case the {@link Test#fastFail() fastFail} attribute of {@link Test @Test} * annotation is used, the assertion may not be lost, in case the thread use * an assertion method from the test object instance. </i> * * * @param regex * The regex to be used for the validation. * @return true if the assertion is valid ; If the assertion is false, * depending on {@link Test#fastFail()} : If <code>true</code>, then * fail the test, else, return false and the test will be failed * later. * @see Test#fastFail() The documentation of the <code>fastFail</code> * attribute of the <code>@Test</code> annotation, regarding the action * done by this assertion. */ default boolean matchesRegex(String regex) { return is(TestSuite.DSL.matchesRegex(regex)); } }