Files
2026-07-13 12:48:55 +08:00

89 lines
2.6 KiB
JavaScript

import test from 'tape'
import nlp from '../_lib.js'
const here = '[two/expand] '
test('basic is contractions', function (t) {
let r = nlp(`he is cool.`)
r.contractions().expand()
t.equal(r.out('text'), `he is cool.`, here + 'expanded-expand')
r = nlp(`he's cool.`)
r.contractions().expand()
t.equal(r.out('text'), `he is cool.`, here + 'contracted-expand')
r = nlp(`he ain't going`)
r.contractions().expand()
t.equal(r.out('text'), `he is not going`, here + 'aint')
r = nlp(`that's really great.`)
r.contractions().expand()
t.equal(r.out('text'), `that is really great.`, here + 'contracted-expand')
r = nlp(`she'll, eat icecream`)
r.contractions().expand()
t.equal(r.out('text'), `she will, eat icecream`, here + 'with-punctuation')
r = nlp("we're not gonna take it, no we're not gonna take it")
r.contractions().expand()
t.equal(r.out('text'), `we are not going to take it, no we are not going to take it`, here + 'expand gonna twice')
r = nlp("we're we're gonna gonna")
r.contractions().expand()
t.equal(r.out('text'), `we are we are going to going to`, here + 'expand consecutive')
t.end()
})
test('do-not contractions', function (t) {
let r = nlp(`please do not eat the marshmellow`)
r.contractions().expand()
t.equal(r.out('text'), `please do not eat the marshmellow`, here + 'expanded-expand')
r = nlp(`please don't eat the marshmellow`)
r.contractions().expand()
t.equal(r.out('text'), `please do not eat the marshmellow`, here + 'contracted-expand')
t.end()
})
test('have contractions', function (t) {
let r = nlp(`i have stood`)
r.contractions().expand()
t.equal(r.out('text'), `i have stood`, here + 'expanded-expand')
r = nlp(`i've stood`)
r.contractions().expand()
t.equal(r.out('text'), `i have stood`, here + 'contracted-expand')
t.end()
})
test('repeated contract-expand', function (t) {
const r = nlp(`i'm good`)
r.contractions().expand()
r.contractions().expand().expand().expand()
t.equal(r.out('text'), `i am good`, here + 'expand-n')
t.end()
})
test('contracted', function (t) {
const r = nlp(`I'll go to Toronto. I will see.`)
const m = r.contractions()
const str = m.out('text')
t.equal(str, `I'll`, here + 'contracted')
t.equal(m.length, 1, here + 'no-expanded')
t.end()
})
test('would-or-did', function (t) {
let r = nlp(`i'd contemplate`)
let str = r.contractions().expand().all().out('text')
t.equal(str, `i would contemplate`, here + 'i-would')
r = nlp(`i'd contemplated`)
str = r.contractions().expand().all().out('text')
t.equal(str, `i had contemplated`, here + 'i-had')
t.end()
})