SecurityRequirementsRule

class SecurityRequirementsRule : IterableRule<SecurityRequirement> (source)

Functions

Link copied to clipboard
Link copied to clipboard
fun <R : IterableRule<SecurityRequirement>> R.each(description: String = "", predicate: (SecurityRequirement) -> Boolean): R

Validate that all elements satisfy predicate.

Link copied to clipboard
fun <R : ValidationRule<Iterable<SecurityRequirement>>> R.either(vararg option: Iterable<SecurityRequirement>): R

Validate that the element should be equal to one of the elements in option given that it is set.

Link copied to clipboard
fun <R : ValidationRule<Iterable<SecurityRequirement>>> R.exactly(value: Iterable<SecurityRequirement>): R

Validate that the element should be equal to value given that it is set.

Link copied to clipboard
fun <R : ValidationRule<Iterable<SecurityRequirement>>> R.given(precondition: (Iterable<SecurityRequirement>?) -> Boolean, rule: R.() -> R): R

Validate rule only if precondition evaluates to true.

Link copied to clipboard
fun <R : ValidationRule<Iterable<SecurityRequirement>>> R.holds(message: (Iterable<SecurityRequirement>?) -> String = { "Was supposed to hold for '$it' but did not" }, predicate: (Iterable<SecurityRequirement>?) -> Boolean): R

Validate that predicate evaluates to true.

Link copied to clipboard
fun <R : IterableRule<SecurityRequirement>> R.none(description: String = "", predicate: (SecurityRequirement) -> Boolean): R

Validate that no element satisfies predicate.

Link copied to clipboard
fun <R : ValidationRule<Iterable<SecurityRequirement>>> R.not(message: String, rule: R.() -> R): R

Validate that the rule does not hold.

Link copied to clipboard
fun <V, R : ValidationRule<Iterable<SecurityRequirement>>> R.optional(value: (Iterable<SecurityRequirement>?) -> V?, rule: R.() -> R): R

Validate rule only if the evaluated result of value is not null.

Link copied to clipboard
fun <R : ValidationRule<Iterable<SecurityRequirement>>> R.required(): R

Validate that the element is set.

Link copied to clipboard
fun <R : ValidationRule<Iterable<SecurityRequirement>>> R.since(date: LocalDate, rule: R.() -> R): R

Validate rule only if date has been in the past.

Link copied to clipboard
fun <R : IterableRule<SecurityRequirement>> R.some(description: String = "", predicate: (SecurityRequirement) -> Boolean): R

Validate that at least one element satisfies predicate.

Link copied to clipboard
fun <R : ValidationRule<Iterable<SecurityRequirement>>> R.unspecified(): R

Validate that the element is not set.

Link copied to clipboard
fun validate(fixture: Iterable<SecurityRequirement>?): ValidationResult

Execute the given rule(s) on the fixture.