org.assertj.db.output.AbstractColumnOutputter 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 2015-2020 the original author or authors.
*/
package org.assertj.db.output;
import org.assertj.db.navigation.Position;
import org.assertj.db.navigation.element.ColumnElement;
import org.assertj.db.output.impl.Output;
import org.assertj.db.type.AbstractDbData;
import org.assertj.db.type.Column;
import org.assertj.db.type.Value;
import java.util.List;
import static org.assertj.db.util.Descriptions.getColumnValueDescription;
/**
* Base class for all {@link Column}s outputs.
*
* @author Régis Pouiller
*
* @param The class of the actual value (an sub-class of {@link AbstractDbData}).
* @param The class of the original assertion (an sub-class of {@link AbstractDbOutputter}).
* @param The class of this assertion (an sub-class of {@link AbstractColumnOutputter}).
* @param The class of this assertion on the value (an sub-class of {@link AbstractColumnValueOutputter}).
* @param The class of the equivalent row assertion (an sub-class of {@link AbstractRowOutputter}).
* @param The class of the equivalent row assertion on the value (an sub-class of {@link AbstractRowValueOutputter}).
*/
public abstract class AbstractColumnOutputter, A extends AbstractDbOutputter, C extends AbstractColumnOutputter, CV extends AbstractColumnValueOutputter, R extends AbstractRowOutputter, RV extends AbstractRowValueOutputter>
extends AbstractSubOutputter
implements ColumnElement {
/**
* Position of navigation to value.
*/
protected final Position valuePosition;
/**
* Column on which do the assertion.
*/
private final Column column;
/**
* Constructor.
*
* @param originalDbOutputter The original assert. That could be a {@link RequestOutputter} or a {@link TableOutputter}.
* @param selfType Type of this assertion class : a sub-class of {@code AbstractColumnOutputter}.
* @param valueType Class of the assert on the value : a sub-class of {@code AbstractColumnValueOutputter}.
*/
AbstractColumnOutputter(A originalDbOutputter, Class selfType, Class valueType, Column column) {
super(originalDbOutputter, selfType);
this.column = column;
valuePosition = new Position(selfType.cast(this), valueType) {
@Override protected String getDescription(int index) {
return getValueDescription(index);
}
};
}
/** {@inheritDoc} */
@Override
protected String getValueDescription(int index) {
return getColumnValueDescription(info, index);
}
/** {@inheritDoc} */
@Override
protected Position getValuePosition() {
return valuePosition;
}
/** {@inheritDoc} */
@Override
protected List getValuesList() {
return column.getValuesList();
}
/**
* {@inheritDoc}
*/
@Override
protected String getOutput(Output outputType) {
return outputType.getColumnOutput(info, column);
}
}