2020-06-03 15:49:04 +00:00
|
|
|
/* eslint-disable no-undef */
|
|
|
|
const TypeArray = require('./array.js')
|
|
|
|
|
|
|
|
describe('test validate schema type array', () => {
|
|
|
|
function throwFunc (val) {
|
|
|
|
return () => {
|
|
|
|
if (val) throw new Error(val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
it('test type array check array', async () => {
|
|
|
|
const arr = new TypeArray()
|
|
|
|
|
|
|
|
expect(throwFunc(arr.validate({}))).toThrow()
|
|
|
|
expect(throwFunc(arr.validate(false))).toThrow()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('test type array with required', async () => {
|
|
|
|
const arr = new TypeArray().required()
|
|
|
|
|
2020-06-10 13:32:50 +00:00
|
|
|
throwFunc(arr.validate([1, 2]))
|
2020-06-03 15:49:04 +00:00
|
|
|
|
|
|
|
expect(throwFunc(arr.validate(undefined))).toThrow()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('test type array with empty', async () => {
|
|
|
|
const arr = new TypeArray().empty()
|
|
|
|
|
2020-06-10 13:32:50 +00:00
|
|
|
throwFunc(arr.validate([]))
|
2020-06-03 15:49:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it('test type array without empty', async () => {
|
|
|
|
const arr = new TypeArray()
|
|
|
|
|
|
|
|
expect(throwFunc(arr.validate([]))).toThrow()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('test type array with min length', async () => {
|
|
|
|
const arr = new TypeArray().min(2)
|
|
|
|
|
|
|
|
expect(() => new TypeArray().min()).toThrow()
|
|
|
|
expect(() => new TypeArray().min(false)).toThrow()
|
|
|
|
expect(() => new TypeArray().min(-1)).toThrow()
|
|
|
|
expect(() => new TypeArray().max(1).min(2)).toThrow()
|
|
|
|
|
2020-06-10 13:32:50 +00:00
|
|
|
throwFunc(arr.validate([1, 2]))
|
2020-06-03 15:49:04 +00:00
|
|
|
|
|
|
|
expect(throwFunc(arr.validate([1]))).toThrow()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('test type array with max length', async () => {
|
|
|
|
const arr = new TypeArray().max(2)
|
|
|
|
|
|
|
|
expect(() => new TypeArray().max()).toThrow()
|
|
|
|
expect(() => new TypeArray().max(false)).toThrow()
|
|
|
|
expect(() => new TypeArray().min(5).max(3)).toThrow()
|
|
|
|
|
2020-06-10 13:32:50 +00:00
|
|
|
throwFunc(arr.validate([1]))
|
2020-06-03 15:49:04 +00:00
|
|
|
|
|
|
|
expect(throwFunc(arr.validate([1, 2, 3]))).toThrow()
|
|
|
|
})
|
|
|
|
})
|