PropertyParameterContext.java
/*
The MIT License
Copyright (c) 2010-2020 Paul R. Holser, Jr.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.pholser.junit.quickcheck.internal;
import static com.pholser.junit.quickcheck.internal.Reflection.defaultValueOf;
import com.pholser.junit.quickcheck.When;
import java.lang.reflect.AnnotatedElement;
public class PropertyParameterContext {
private static final long DEFAULT_SEED =
(long) defaultValueOf(When.class, "seed");
private final ParameterTypeContext typeContext;
private int discardRatio;
private String constraint;
private long seed = DEFAULT_SEED;
public PropertyParameterContext(ParameterTypeContext typeContext) {
this.typeContext = typeContext;
}
public PropertyParameterContext annotate(AnnotatedElement element) {
When quantifier = element.getAnnotation(When.class);
addQuantifier(quantifier);
addConstraint(quantifier);
typeContext.annotate(element);
return this;
}
public PropertyParameterContext addQuantifier(When quantifier) {
if (quantifier != null) {
this.discardRatio = ensurePositiveDiscardRatio(quantifier);
this.seed = quantifier.seed();
}
return this;
}
public PropertyParameterContext addConstraint(When quantifier) {
if (quantifier != null
&& !defaultValueOf(When.class, "satisfies")
.equals(quantifier.satisfies())) {
constraint = quantifier.satisfies();
}
return this;
}
public ParameterTypeContext typeContext() {
return typeContext;
}
public int discardRatio() {
return discardRatio;
}
public String constraint() {
return constraint;
}
public boolean fixedSeed() {
return seed != DEFAULT_SEED;
}
public long seed() {
return seed;
}
private int ensurePositiveDiscardRatio(When quantifier) {
if (quantifier.discardRatio() <= 0) {
throw new IllegalArgumentException(
"Non-positive discard ratio for parameter " + typeContext.name()
+ " of type " + typeContext.type().getTypeName());
}
return quantifier.discardRatio();
}
}