test: add test for measureText (#1416)

pull/1418/head
Nolan Lawson 2019-08-20 09:20:39 -07:00 zatwierdzone przez GitHub
rodzic 29ae7f4988
commit 43cb92bd61
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 27 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,27 @@
/* global describe, it */
import assert from 'assert'
import { measureText } from '../../src/routes/_utils/measureText'
describe('test-measure-text.js', () => {
it('measures text correctly', () => {
assert.deepStrictEqual(measureText(undefined), 0)
assert.deepStrictEqual(measureText(''), 0)
assert.deepStrictEqual(measureText('foo'), 3)
assert.deepStrictEqual(measureText('\ud83c\udf4d\ud83c\udf4d'), 2)
assert.deepStrictEqual(measureText('hello world http://example.com/super/long/url/that/should/be/shortened'), 70)
assert.deepStrictEqual(measureText(' @fooooooooooooooooooooooooooooooooooooooooooooooo@example.com '), 51)
assert.deepStrictEqual(measureText(' @fooooooooooooooooooooooooooooooooooooooooooooooooooo@example.com '), 55)
assert.deepStrictEqual(measureText(' @fooooooooooooooooooooooooooooooooooooooooooooooo@exaaaaaample.com '), 51)
assert.deepStrictEqual(measureText(
'hello world http://example.com/super/long/url/that/should/be/shortened and ' +
'another url http://example.com/super/long/url/that/should/be/shortened/too'),
149)
assert.deepStrictEqual(measureText(
'hello world http://example.com/super/long/url/that/should/be/shortened and ' +
'another url http://example.com/super/long/url/that/should/be/shortened/too and' +
'also a handle @foooooooooooooooooooooooooooooooo@example.com @baaaar@exaaaaaaaaaaample.com and ' +
'@foooooooooooooooooooooooooo@example.com'),
242)
})
})