name-suggestion-index/tests/simplify.test.js
Bryan Housel 1c4fc70e3b WIP Modernize
- switch to type: module
- replace all CJS require/module.exports with ES6 import/expor
2021-06-22 00:04:52 -04:00

46 lines
1.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { simplify } from '../index.mjs';
describe('simplify', () => {
test('lowercases', () => {
expect(simplify('Aldo')).toBe('aldo');
});
test('replaces diacritics', () => {
expect(simplify('André')).toBe('andre');
});
test('removes spaces', () => {
expect(simplify('Jimmy Choo')).toBe('jimmychoo');
});
test('removes various dashes', () => {
expect(simplify('PTV - Metropolitan')).toBe('ptvmetropolitan'); // hypen
expect(simplify('PTV Metropolitan')).toBe('ptvmetropolitan'); // en dash (U+2013)
expect(simplify('PTV — Metropolitan')).toBe('ptvmetropolitan'); // em dash (U+2014)
expect(simplify('PTV ― Metropolitan')).toBe('ptvmetropolitan'); // horizontal bar (U+2015)
});
test('removes unprintable unicode (like RTL/LTR marks, zero width space, zero width nonjoiner)', () => {
expect(simplify('\u200FJim\u200Bmy\u200CChoo\u200E')).toBe('jimmychoo');
});
test('removes punctuation', () => {
expect(simplify('K+K Schuh-Center')).toBe('kkschuhcenter');
});
test('replaces & with and', () => {
expect(simplify('Johnston & Murphy')).toBe('johnstonandmurphy');
});
test('replaces ß (eszett) with ss', () => {
expect(simplify('Beßon')).toBe('besson');
});
test('returns empty string if no input', () => {
expect(simplify()).toBe('');
expect(simplify(null)).toBe('');
expect(simplify({})).toBe('');
});
});