]> git.openstreetmap.org Git - nominatim-ui.git/blob - test/details.js
Merge remote-tracking branch 'upstream/master'
[nominatim-ui.git] / test / details.js
1 import assert from 'assert';
2
3 const reverse_only = !!process.env.REVERSE_ONLY;
4
5 describe('Details Page', function () {
6   let page;
7
8   describe('No search', function () {
9     before(async function () {
10       page = await browser.newPage();
11       await page.goto('http://localhost:9999/details.html');
12     });
13
14     after(async function () {
15       await page.close();
16     });
17
18     it('should have a HTML page title', async function () {
19       assert.equal(await page.title(), 'Nominatim Demo');
20     });
21   });
22
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');
30     });
31
32
33     it('should display error', async function () {
34       let page_content = await page.$eval('body', el => el.textContent);
35
36       assert.ok(page_content.includes('No place with that OSM ID found'));
37     });
38
39     after(async function () {
40       await page.close();
41     });
42   });
43
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');
51     });
52
53     after(async function () {
54       await page.close();
55     });
56
57     it('should have header title', async function () {
58       let page_header = await page.$eval('.container h1', el => el.textContent);
59
60       assert.ok(page_header.includes('Vaduz'));
61     });
62
63     it('should have OSM link', async function () {
64
65       assert.strictEqual((await page.$$('a[href="https://www.openstreetmap.org/relation/1155956"]')).length, 2);
66     });
67
68     // Reverse-only installation have no search index, therefor no keywords
69     if (!reverse_only) {
70       it('should change url and add new header on clicking display keywords', async function () {
71         let current_url;
72         let display_headers;
73         let [display_keywords_btn] = await page.$x("//a[contains(text(), 'display keywords')]");
74
75         await display_keywords_btn.evaluate(node => node.click());
76         await page.waitForNavigation();
77
78         current_url = new URL(await page.url());
79         assert.strictEqual(current_url.searchParams.get('keywords'), '1');
80
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']);
84
85         let page_content = await page.$eval('body', el => el.textContent);
86         assert.ok(page_content.includes('vadouz')); // one of the name keywords
87       });
88     }
89
90     it('should change page url on clicking display child places', async function () {
91       let current_url;
92       let [child_places_btn] = await page.$x("//a[contains(text(), 'display child places')]");
93
94       await child_places_btn.evaluate(node => node.click());
95       await page.waitForNavigation();
96       await page.waitForSelector('table#address');
97
98       current_url = new URL(await page.url());
99       assert.strictEqual(current_url.searchParams.get('hierarchy'), '1');
100
101       let page_content = await page.$eval('body', el => el.textContent);
102       assert.ok(page_content.includes('Alte Landstrasse')); // one of the streets
103     });
104
105     it('should support case-insenstive search, can navigate to new page', async function () {
106       let input_field = await page.$('input[type=edit]');
107       await input_field.click({ clickCount: 3 });
108       await input_field.type('w375257537');
109       await page.click('button[type=submit]');
110
111       await page.waitForSelector('a[href="https://www.openstreetmap.org/way/375257537"]');
112       assert.ok((await page.$eval('.container h1', el => el.textContent)).includes('Taj Mahal'));
113     });
114   });
115
116   describe('Place without name, keywords, hierarchy', function () {
117     // e.g. a numeric house number
118     before(async function () {
119       page = await browser.newPage();
120       await page.goto('http://localhost:9999/details.html?osmtype=N&osmid=946563004&keywords=1&hierarchy=1');
121       await page.waitForSelector('.container .row');
122     });
123
124     after(async function () {
125       await page.close();
126     });
127
128     it('should display No Name, no keywords, no hierarchy', async function () {
129       let page_content = await page.$eval('body', el => el.textContent);
130
131       assert.ok(page_content.includes('Name No Name'));
132       if (!process.env.REVERSE_ONLY) {
133         assert.ok(page_content.includes('Place has no keywords'));
134       }
135       assert.ok(page_content.includes('Place is not parent of other places'));
136     });
137   });
138 });