1 import assert from 'assert';
3 const reverse_only = !!process.env.REVERSE_ONLY;
5 describe('Details Page', function () {
8 describe('No search', function () {
9 before(async function () {
10 page = await browser.newPage();
11 await page.goto('http://localhost:9999/details.html');
14 after(async function () {
18 it('should have a HTML page title', async function () {
19 assert.equal(await page.title(), 'Nominatim Demo');
23 describe('With search - no place found', function () {
24 before(async function () {
25 page = await browser.newPage();
26 await page.goto('http://localhost:9999/details.html');
27 await page.type('input[type=edit]', 'N6');
28 await page.click('button[type=submit]');
29 await page.waitForSelector('#api-request');
33 it('should display error', async function () {
34 let page_content = await page.$eval('body', el => el.textContent);
36 assert.ok(page_content.includes('No place with that OSM ID found'));
39 after(async function () {
44 describe('With search - Vaduz (Liechtenstein)', function () {
45 before(async function () {
46 page = await browser.newPage();
47 await page.goto('http://localhost:9999/details.html');
48 await page.type('input[type=edit]', 'R1155956');
49 await page.click('button[type=submit]');
50 await page.waitForSelector('table#address');
53 after(async function () {
57 it('should have header title', async function () {
58 let page_header = await page.$eval('.container h1', el => el.textContent);
60 assert.ok(page_header.includes('Vaduz'));
63 it('should have OSM link', async function () {
65 assert.strictEqual((await page.$$('a[href="https://www.openstreetmap.org/relation/1155956"]')).length, 2);
68 // Reverse-only installation have no search index, therefor no keywords
70 it('should change url and add new header on clicking display keywords', async function () {
73 let [display_keywords_btn] = await page.$x("//a[contains(text(), 'display keywords')]");
75 await display_keywords_btn.evaluate(node => node.click());
76 await page.waitForNavigation();
78 current_url = new URL(await page.url());
79 assert.strictEqual(current_url.searchParams.get('keywords'), '1');
81 await page.waitForSelector('h3');
82 display_headers = await page.$$eval('h3', elements => elements.map(el => el.textContent));
83 assert.deepStrictEqual(display_headers, ['Name Keywords', 'Address Keywords']);
85 let page_content = await page.$eval('body', el => el.textContent);
86 assert.ok(page_content.includes('vadouz')); // one of the name keywords
91 it('should support case-insenstive search, can navigate to new page', async function () {
92 let input_field = await page.$('input[type=edit]');
93 await input_field.click({ clickCount: 3 });
94 await input_field.type('w375257537');
95 await page.click('button[type=submit]');
97 await page.waitForSelector('a[href="https://www.openstreetmap.org/way/375257537"]');
98 assert.ok((await page.$eval('.container h1', el => el.textContent)).includes('Taj Mahal'));
102 describe('With street search - a place that is parent of buildings', function () {
103 before(async function () {
104 page = await browser.newPage();
105 await page.goto('http://localhost:9999/details.html?osmtype=W&osmid=32703083');
106 await page.waitForSelector('.container .row');
109 after(async function () {
113 it('should change page url on clicking display child places', async function () {
114 let page_content = await page.$eval('body', el => el.textContent);
115 assert.ok(page_content.includes('Gafleistrasse'));
118 let [child_places_btn] = await page.$x("//a[contains(text(), 'display child places')]");
120 await child_places_btn.evaluate(node => node.click());
121 await page.waitForNavigation();
122 await page.waitForSelector('table#address');
124 current_url = new URL(await page.url());
125 assert.strictEqual(current_url.searchParams.get('hierarchy'), '1');
127 page_content = await page.$eval('body', el => el.textContent);
128 assert.ok(page_content.includes('bus_stop')); // parent of several bus stops
132 describe('Place without name, keywords, hierarchy', function () {
133 // e.g. a numeric house number
134 before(async function () {
135 page = await browser.newPage();
136 await page.goto('http://localhost:9999/details.html?osmtype=N&osmid=946563004&keywords=1&hierarchy=1');
137 await page.waitForSelector('.container .row');
140 after(async function () {
144 it('should display No Name, no keywords, no hierarchy', async function () {
145 let page_content = await page.$eval('body', el => el.textContent);
147 assert.ok(page_content.includes('Name No Name'));
148 if (!process.env.REVERSE_ONLY) {
149 assert.ok(page_content.includes('Place has no keywords'));
151 assert.ok(page_content.includes('Place is not parent of other places'));