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

ch.powerunit.extensions.matchers.provideprocessor.fields.DefaultFieldDescription Maven / Gradle / Ivy

Go to download

This is a test framework for the JDK 1.8 - Extension to provide matchers based on annotation. - Factory Support

There is a newer version: 0.1.6
Show newest version
/**
 * 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 .
 */
package ch.powerunit.extensions.matchers.provideprocessor.fields;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

import javax.lang.model.element.TypeElement;

import ch.powerunit.extensions.matchers.provideprocessor.ProvidesMatchersAnnotatedElementData;
import ch.powerunit.extensions.matchers.provideprocessor.fields.lang.BuilderDeclaration;

public class DefaultFieldDescription extends AbstractFieldDescription {

	public DefaultFieldDescription(ProvidesMatchersAnnotatedElementData containingElementMirror,
			FieldDescriptionMirror mirror) {
		super(containingElementMirror, mirror);
	}

	protected Collection getSpecificFieldDslMethodFor() {
		return Collections.emptyList();
	}

	protected final BuilderDeclaration getDslMethodBuilder() {
		return FieldDSLMethodBuilder.of(this);
	}

	@Override
	protected final Collection getFieldDslMethodFor() {
		String ft = mirror.getFieldType();
		String fn = mirror.getFieldName();
		List tmp = new ArrayList<>();
		tmp.add(FieldDSLMethodBuilder.of(this).withDeclaration("org.hamcrest.Matcher matcher")
				.withJavaDoc("", "matcher a Matcher on the field", SEE_TEXT_FOR_HAMCREST_MATCHER)
				.havingImplementation(fn + "= new " + mirror.getMethodFieldName() + "Matcher(matcher);\nreturn this;"));
		tmp.add(FieldDSLMethodBuilder.of(this).withDeclaration(ft + " value")
				.withJavaDoc("", "value an expected value for the field, which will be compared using the is matcher",
						SEE_TEXT_FOR_IS_MATCHER)
				.havingDefault("(org.hamcrest.Matcher)" + MATCHERS + ".is((java.lang.Object)value)"));
		tmp.add(FieldDSLMethodBuilder.of(this)
				.withGenericDeclaration("<_TARGETFIELD>", "As",
						"java.util.function.Function<" + ft
								+ ",_TARGETFIELD> converter,org.hamcrest.Matcher matcher")
				.withJavaDoc("by converting the received field before validat it",
						"converter a function to convert the field\nmatcher a matcher on the resulting\n<_TARGETFIELD> The type which this field must be converter")
				.havingDefault("asFeatureMatcher(\"  \",converter,matcher)"));
		TypeElement te = mirror.getFieldTypeAsTypeElement();
		if (fullyQualifiedNameMatcherInSameRound != null && te.getTypeParameters().isEmpty()) {
			String name = te.getSimpleName().toString();
			String lname = name.substring(0, 1).toLowerCase() + name.substring(1);
			tmp.add(FieldDSLMethodBuilder.of(this).withExplicitDeclarationJavadocAndImplementation(
					fullyQualifiedNameMatcherInSameRound + "." + name + "Matcher" + "<" + defaultReturnMethod + "> "
							+ fn + "With()",
					"by starting a matcher for this field",
					fullyQualifiedNameMatcherInSameRound + "." + name + "Matcher tmp = "
							+ fullyQualifiedNameMatcherInSameRound + "." + lname + "WithParent(this);\n" + fn
							+ "(tmp);\nreturn tmp;"));
		}
		tmp.addAll(getSpecificFieldDslMethodFor());
		return tmp;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy