all files / src/__tests__/ inclusion.spec.js

100% Statements 24/24
100% Branches 4/4
100% Functions 5/5
100% Lines 21/21
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28     11×            
import assert from 'assert'
import { inclusion } from '../index'
import getErrorId from './helper'
 
const ERROR_ID = 'form.errors.inclusion'
 
function test (value, params) {
  return getErrorId(inclusion(params)(value))
}
 
describe('Validator: inclusion', function() {
  it('should be invalid when `value` is not in the list', function() {
    assert.equal(ERROR_ID, test(1,     { in: [] }))
    assert.equal(ERROR_ID, test('1',   { in: [2, 3, 4] }))
    assert.equal(ERROR_ID, test('foo', { within: 'foobar' }))
    assert.equal(ERROR_ID, test('FOO', { within: ['foobar'], caseSensitive: false }))
    assert.equal(ERROR_ID, test('FOO', { within: ['foo'], caseSensitive: true }))
  })
  it('should be valid when `value` is in the list', function() {
    assert.ok(!test(1,     { in: [9, 8, '1'] }))
    assert.ok(!test('1',   { in: [9, 8, 1] }))
    assert.ok(!test('foo', { within: 'foo' }))
    assert.ok(!test('foo', { within: ['bar', 'foo'], caseSensitive: true }))
    assert.ok(!test('FOO', { within: ['foo'], caseSensitive: false }))
    assert.ok(!test('fOo', { within: ['foo'], caseSensitive: false }))
  })
})