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

131 lines
3.3 KiB
JavaScript
Raw Permalink 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 test from 'tape'
import nlp from './_lib.js'
const here = '[three/places] '
test('known-regions:', function (t) {
const arr = [
['i want to go to Ohio to see George Harrison', 'ohio'],
['we are visiting Gloucestershire, before we leave', 'gloucestershire'],
['manitoba is nice this time of year', 'manitoba'],
]
arr.forEach(function (a) {
const str = nlp(a[0]).match('#Region').text('normal')
t.equal(str, a[1], here + a[0])
})
t.end()
})
test('places-find:', function (t) {
const arr = [
['live in the Rekcjd Province', 'rekcjd province'],
['live in the Lekfjs District', 'lekfjs district'],
['visiting Tojbs Kjeh Region', 'tojbs kjeh region'],
['visiting the State of Lkjfhe', 'state of lkjfhe'],
['see you in West Nunavut', 'west nunavut'],
['see you in western Hunan', 'western hunan'],
['see you in Northern Hunan province', 'northern hunan province'],
['see you in Toronto, Canada', 'toronto canada'],
['see you in Toronto, Ontario', 'toronto ontario'],
['I flew to Austin, Texas', 'austin texas'],
['I flew to San antonio, Texas', 'san antonio texas'],
]
arr.forEach(function (a) {
const str = nlp(a[0]).places(0).text('normal')
t.equal(str, a[1], here + a[0])
})
t.end()
})
test('mixed continents-places:', function (t) {
const doc = nlp('in north africa, eastern asia, guatemala, europe, north america, and japan')
t.equal(doc.places().length, 6, here + '6-places')
t.end()
})
test('national-monuments:', function (t) {
const list = [
"St. Peter's Basilica",
'Palace of Versailles',
'Lincoln Memorial',
'Colosseum',
'Parthenon',
'Eiffel Tower',
'Taj Mahal',
'Cologne Cathedral',
'Peterhof Palace',
'Łazienki Palace',
// 'Independence National Historical Park',
// 'Statue of Liberty National Monument',
'Teotihuacán',
'Mysore Palace',
'Tsarskoe Selo State Museum',
'Pompeii',
'Wilanów Palace',
'Schönbrunn Palace',
'Kazan Kremlin',
'Tower of London',
'Alhambra',
'Chichén Itzá',
'Topkapı Palace',
'Chapultepec Castle',
'Tulum',
'Edinburgh Castle',
'Wawel Castle',
'Arc de Triomphe',
'Royal Palace of Madrid',
'Neuschwanstein',
'Machu Picchu',
'San Juan National Historic Site',
'Admiralty Island',
'Berryessa Snow Mountain',
'Buck Island Reef',
'Capulin Volcano',
'Carrizo Plain',
'Casa Grande Ruins',
'Castle Mountains',
// 'Castner Range',
'Cedar Breaks',
'Chiricahua',
'Colorado',
'Fort Frederica',
'Fort Matanzas',
'Fort McHenry',
'Fort Monroe',
'Fort Ord',
'Fort Pulaski',
'Fort Stanwix',
'Fort Union',
'Mill Springs Battlefield',
'Misty Fjords',
'Mojave Trails',
'Montezuma Castle',
'Muir Woods',
'Rainbow Bridge',
'Río Grande del Norte',
'Rose Atoll',
'Russell Cave',
'San Gabriel Mountains',
'San Juan Islands',
'Scotts Bluff',
'Sonoran Desert',
'Sunset Crater Volcano',
'Timpanogos Cave',
'Tonto',
'Tule Lake',
// 'Tule Springs Fossil Beds',
'Tuzigoot',
'Upper Missouri River Breaks',
'Vermilion Cliffs',
'Virgin Islands Coral Reef',
'Walnut Canyon',
'Wupatki',
'Yucca House',
]
list.forEach(str => {
const doc = nlp(str)
t.ok(doc.places().found, str)
})
t.end()
})