You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
4.6 KiB
160 lines
4.6 KiB
import test from 'ava'
|
|
import Chance from '../chance.js'
|
|
import _ from 'lodash'
|
|
|
|
const chance = new Chance()
|
|
|
|
// chance.sentence()
|
|
test('sentence() returns a random sentence', t => {
|
|
_.times(1000, () => {
|
|
let sentence = chance.sentence()
|
|
t.true(_.isString(sentence))
|
|
let len = sentence.split(' ').length
|
|
t.true(len > 11)
|
|
t.true(len < 19)
|
|
})
|
|
})
|
|
|
|
test('sentence() will obey bounds', t => {
|
|
_.times(1000, () => {
|
|
let sentence = chance.sentence({ words: 5 })
|
|
t.true(_.isString(sentence))
|
|
t.is(sentence.split(' ').length, 5)
|
|
t.true(/[a-zA-Z]+ [a-zA-Z]+ [a-zA-Z]+ [a-zA-Z]+ [a-zA-Z]+.?/m.test(sentence))
|
|
})
|
|
})
|
|
|
|
// chance.syllable()
|
|
test('syllable() returns a random syllable', t => {
|
|
_.times(1000, () => {
|
|
let syllable = chance.syllable()
|
|
t.true(_.isString(syllable))
|
|
t.true(syllable.length > 1)
|
|
t.true(syllable.length < 4)
|
|
})
|
|
})
|
|
|
|
test('syllable() obeys the capitalize option', t => {
|
|
_.times(1000, () => {
|
|
let syllable = chance.syllable({ capitalize: true })
|
|
t.true(_.isString(syllable))
|
|
t.true(syllable.length > 1)
|
|
t.true(syllable.length < 4)
|
|
t.true(/[A-Z]+/.test(syllable))
|
|
})
|
|
})
|
|
|
|
// chance.word()
|
|
test('word() returns a random word', t => {
|
|
_.times(1000, () => {
|
|
let word = chance.word()
|
|
t.true(_.isString(word))
|
|
t.true(word.length > 1)
|
|
t.true(word.length < 10)
|
|
})
|
|
})
|
|
|
|
test('word() obeys the capitalize option', t => {
|
|
_.times(1000, () => {
|
|
let word = chance.word({ capitalize: true })
|
|
t.true(_.isString(word))
|
|
t.true(word.length > 1)
|
|
t.true(word.length < 10)
|
|
t.true(word.charAt(0) === word.charAt(0).toUpperCase())
|
|
})
|
|
})
|
|
|
|
test('word() can have a set number of syllables', t => {
|
|
_.times(1000, () => {
|
|
let word = chance.word({ syllables: 3 })
|
|
t.true(_.isString(word))
|
|
t.true(word.length > 5)
|
|
t.true(word.length < 10)
|
|
})
|
|
})
|
|
|
|
test('word() can have a set length', t => {
|
|
_.times(1000, () => {
|
|
let word = chance.word({ length: 5 })
|
|
t.true(_.isString(word))
|
|
t.is(word.length, 5)
|
|
})
|
|
})
|
|
|
|
test('word() throws if both syllables and length specified', t => {
|
|
const fn = () => chance.word({ syllables: 3, length: 20 })
|
|
t.throws(fn, 'Chance: Cannot specify both syllables AND length.')
|
|
})
|
|
|
|
// chance.paragraph()
|
|
test('paragraph() returns a random paragraph', t => {
|
|
_.times(100, () => {
|
|
let paragraph = chance.paragraph()
|
|
t.true(_.isString(paragraph))
|
|
|
|
let len = paragraph.split('.').length
|
|
t.true(len > 2)
|
|
t.true(len < 9)
|
|
})
|
|
})
|
|
|
|
test('paragraph() will obey bounds', t => {
|
|
_.times(100, () => {
|
|
let paragraph = chance.paragraph({ sentences: 5 })
|
|
t.true(_.isString(paragraph))
|
|
|
|
// Have to account for the fact that the period at the end will add
|
|
// to the count of sentences. This is the fault of our hackish way
|
|
// of detecting sentences -- by splitting on '.'
|
|
let len = paragraph.split('.').length
|
|
t.is(len, 6)
|
|
})
|
|
})
|
|
|
|
test('paragraph) will obey line breaks', t => {
|
|
_.times(100, () => {
|
|
let rand = _.random(1, 50);
|
|
let paragraph = chance.paragraph({ sentences: rand, linebreak: true })
|
|
t.true(_.isString(paragraph))
|
|
|
|
let len = paragraph.split('\n').length
|
|
t.is(len, rand);
|
|
})
|
|
})
|
|
|
|
test('emoji() will return a single emoji by default', t => {
|
|
let emoji = chance.emoji();
|
|
|
|
t.true(_.isString(emoji));
|
|
t.is([...emoji].length, 1);
|
|
})
|
|
|
|
test('emoji() will return as many emojis as you tell it to', t => {
|
|
_.times(100, () => {
|
|
let rand = _.random(1, 50);
|
|
let emoji = chance.emoji({ length: rand });
|
|
|
|
t.true(_.isString(emoji));
|
|
t.is([...emoji].length, rand);
|
|
})
|
|
})
|
|
|
|
test('emoji() will throw an error when category is unrecognised', t => {
|
|
let fn = () => chance.emoji({ category: 'something-incorrect' });
|
|
t.throws(fn, "Chance: Unrecognised emoji category: [something-incorrect].");
|
|
})
|
|
|
|
test('emoji() will throw an error when length is 0', t => {
|
|
let fn = () => chance.emoji({ length: 0 });
|
|
t.throws(fn, "Chance: length must be between 1 and 9007199254740992");
|
|
})
|
|
|
|
test('emoji() will throw an error when length is negative', t => {
|
|
let fn = () => chance.emoji({ length: -1 });
|
|
t.throws(fn, "Chance: length must be between 1 and 9007199254740992");
|
|
})
|
|
|
|
test('emoji() will throw an error when length is greater than 9007199254740992', t => {
|
|
let fn = () => chance.emoji({ length: BigInt('9007199254740993') });
|
|
t.throws(fn, "Chance: length must be between 1 and 9007199254740992");
|
|
}) |