org.assertj.db.api.Assertions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-db Show documentation
Show all versions of assertj-db Show documentation
AssertJ-DB - Rich and fluent assertions for testing with database
/**
* 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.
*
* Copyright 2012-2016 the original author or authors.
*/
package org.assertj.db.api;
import org.assertj.db.exception.AssertJDBException;
import org.assertj.db.type.Changes;
import org.assertj.db.type.Request;
import org.assertj.db.type.Source;
import org.assertj.db.type.Table;
import java.io.*;
import static org.assertj.db.util.Descriptions.getDescription;
/**
* Entry point of all the assertions.
*
* The navigation methods are defined in navigation package.
* The assertion methods are defined in assertions package.
*
*
* Example with a {@link Source} and a {@link Table} with test on the content on the first row of the {@code movie}
* table that the {@code title} column contains "Alien" like text and the next column contains 1979 like number :
*
*
*
*
* Source source = new Source("jdbc:h2:mem:test", "sa", "");
* Table table = new Table(source, "movie");
* assertThat(table)
* .row()
* .value("title")
* .isEqualTo("Alien")
* .returnToRow()
* .value()
* .isEqualTo(1979);
*
*
*
*
* It is possible to chain assertion on a value :
*
*
*
*
* assertThat(table)
* .row()
* .value("title")
* .isText()
* .isEqualTo("Alien");
*
*
*
*
* It is not necessary to use the returnToXxxx
methods. The next example is equivalent to the first :
*
*
*
*
* Source source = new Source("jdbc:h2:mem:test", "sa", "");
* Table table = new Table(source, "movie");
* assertThat(table)
* .row()
* .value("title")
* .isEqualTo("Alien")
* .value()
* .isEqualTo(1979);
*
*
*
*
* It is possible to do the same thing with column and the row :
*
*
*
*
* assertThat(table)
* .row()
* .value("title")
* .isEqualTo("Alien")
* .row()
* .value()
* .isEqualTo("The Village")
* .column("year")
* .value(1)
* .equalTo(2004);
*
*
*
* @author Régis Pouiller
*
*/
public final class Assertions {
/**
* Private constructor of the entry point.
*/
private Assertions() {
// empty
}
/**
* Creates a new instance of {@link TableAssert}.
*
* @param table The table to assert on.
* @return The created assertion object.
*/
public static TableAssert assertThat(Table table) {
return new TableAssert(table).as(getDescription(table));
}
/**
* Creates a new instance of {@link RequestAssert}.
*
* @param request The request to assert on.
* @return The created assertion object.
*/
public static RequestAssert assertThat(Request request) {
return new RequestAssert(request).as(getDescription(request));
}
/**
* Creates a new instance of {@link ChangesAssert}.
*
* @param changes The changes to assert on.
* @return The created assertion object.
*/
public static ChangesAssert assertThat(Changes changes) {
return new ChangesAssert(changes).as(getDescription(changes));
}
/**
* Reads the bytes from an {@link InputStream}.
*
* @param inputStream The {@link InputStream}
* @return A array of {@code byte}
* @throws AssertJDBException If triggered, this exception wrap a possible {@link IOException} during the loading.
*/
private static byte[] read(InputStream inputStream) {
try {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
int byteInt = inputStream.read();
while (byteInt != -1) {
byteArrayOutputStream.write(byteInt);
byteInt = inputStream.read();
}
return byteArrayOutputStream.toByteArray();
} catch (IOException e) {
throw new AssertJDBException(e);
}
}
/**
* Reads the bytes from a file and returns them.
*
* @param file The {@link File}
* @return The bytes of the file.
* @throws NullPointerException If the {@code file} field is {@code null}.
* @throws AssertJDBException If triggered, this exception wrap a possible {@link IOException} during the loading.
*/
public static byte[] bytesContentOf(File file) {
if (file == null) {
throw new NullPointerException("File must be not null");
}
try (InputStream inputStream = new FileInputStream(file)) {
return read(inputStream);
} catch (IOException e) {
throw new AssertJDBException(e);
}
}
/**
* Reads the bytes from a file in the classpath and returns them.
*
* @param resource The name of the file in the classpath.
* @return The bytes of the file.
* @throws NullPointerException If the {@code resource} field is {@code null}.
*/
public static byte[] bytesContentFromClassPathOf(String resource) {
if (resource == null) {
throw new NullPointerException("Resource must be not null");
}
ClassLoader classLoader = Assertions.class.getClassLoader();
try (InputStream inputStream = classLoader.getResourceAsStream(resource)) {
if (inputStream == null) {
throw new AssertJDBException("Resource %s not found in the classpath", resource);
}
return read(inputStream);
} catch (IOException e) {
throw new AssertJDBException(e);
}
}
}