本文整理汇总了TypeScript中forms/validation/validators/minimumAgeValidator.MinimumAgeValidatorConstraint类的典型用法代码示例。如果您正苦于以下问题:TypeScript MinimumAgeValidatorConstraint类的具体用法?TypeScript MinimumAgeValidatorConstraint怎么用?TypeScript MinimumAgeValidatorConstraint使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MinimumAgeValidatorConstraint类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: describe
describe('MinimumAgeValidatorConstraint', () => {
const constraint: MinimumAgeValidatorConstraint = new MinimumAgeValidatorConstraint()
const minMessage: string = 'Min Years in the past has to be specified and positive value'
describe('validate', () => {
const today = moment()
it('should throw an error if minYears constraint is not set', () => {
expect(() => constraint.validate(null, yearsLimit(undefined))).to.throw(Error, minMessage)
})
it('should accept past date grater than minimum age', () => {
expect(constraint.validate(new LocalDate(today.year() - 19, today.month() + 1, today.date()), yearsLimit(18))).to.be.equal(true)
})
it('should accept undefined value', () => {
expect(constraint.validate(undefined, yearsLimit(1))).to.be.equal(true)
})
it('should accept undefined value', () => {
expect(constraint.validate(undefined, yearsLimit(1))).to.be.equal(true)
})
it('should reject values other then LocalDate', () => {
expect(constraint.validate({}, yearsLimit(1))).to.be.equal(false)
})
it('should reject future date', () => {
expect(constraint.validate(new LocalDate(today.year(), today.month() + 1, today.date() + 1), yearsLimit(1))).to.be.equal(false)
})
it('should reject current date', () => {
expect(constraint.validate(new LocalDate(today.year(), today.month() + 1, today.date()), yearsLimit(1))).to.be.equal(false)
})
it('should reject past date out of the range', () => {
expect(constraint.validate(new LocalDate(today.year() - 17, today.month() + 1, today.date()), yearsLimit(18))).to.be.equal(false)
})
it('should accept past date within range', () => {
expect(constraint.validate(new LocalDate(today.year() - 1, today.month() + 1, today.date()), yearsLimit(1))).to.be.equal(true)
})
})
})
示例2: it
it('should accept past date within range', () => {
expect(constraint.validate(new LocalDate(today.year() - 1, today.month() + 1, today.date()), yearsLimit(1))).to.be.equal(true)
})
示例3: expect
expect(() => constraint.validate(null, yearsLimit(undefined))).to.throw(Error, minMessage)