]> git.openstreetmap.org Git - nominatim-ui.git/blob - test/details.js
df667b637a33b60cb72e7df8f71b6c5fc69c0544
[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
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]');
96
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'));
99     });
100   });
101
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');
107     });
108
109     after(async function () {
110       await page.close();
111     });
112
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'));
116
117       let current_url;
118       let [child_places_btn] = await page.$x("//a[contains(text(), 'display child places')]");
119
120       await child_places_btn.evaluate(node => node.click());
121       await page.waitForNavigation();
122       await page.waitForSelector('table#address');
123
124       current_url = new URL(await page.url());
125       assert.strictEqual(current_url.searchParams.get('hierarchy'), '1');
126
127       page_content = await page.$eval('body', el => el.textContent);
128       assert.ok(page_content.includes('bus_stop')); // parent of several bus stops
129     });
130   });
131
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');
138     });
139
140     after(async function () {
141       await page.close();
142     });
143
144     it('should display No Name, no keywords, no hierarchy', async function () {
145       let page_content = await page.$eval('body', el => el.textContent);
146
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'));
150       }
151       assert.ok(page_content.includes('Place is not parent of other places'));
152     });
153   });
154 });