1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
/*!
* Matomo - free/libre analytics platform
*
* ReportExportPopover UI tests.
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
describe('ReportExportPopover', function () {
this.fixture = "Piwik\\Tests\\Fixtures\\UITestFixture";
const url = "?module=CoreHome&action=index&idSite=1&period=day&date=2012-08-09"
+ "#?idSite=1&period=day&date=2012-08-09&category=General_Actions&subcategory=General_Pages";
async function isOptionExpandSubtableVisible() {
return await page.evaluate(() => (
$('#reportExport div[name="option_expanded"] div.form-group.matomo-form-field').is(':visible')
));
}
async function isOptionVisible(optionName) {
return await page.evaluate((nameValue) => (
$(`#reportExport div[name="${nameValue}"] div.form-group.matomo-form-field`).is(':visible')
), optionName);
}
async function clickFormat(format){
await page.evaluate((formatValue) => {
const selector = `#reportExport input[name="format"][value="${formatValue}"]`;
const input = document.querySelector(selector);
if (input) {
input.click();
}
}, format);
}
async function clickOption(optionName) {
await page.evaluate((nameValue) => {
const selector = `#reportExport div[name="${nameValue}"] input[type="checkbox"][name="${nameValue}"]`;
const input = document.querySelector(selector);
if (input) {
input.click();
}
}, optionName);
}
async function expectOptionChecked(optionName, expected) {
const selector = `#reportExport div[name="${optionName}"] input[type="checkbox"]`;
await page.waitForSelector(selector);
const actual = await page.evaluate((sel) => {
const input = document.querySelector(sel);
return input ? input.checked : null;
}, selector);
expect(actual, `option ${optionName} checked state`).to.equal(expected);
}
async function expectExportLinkContains(substring) {
const href = await page.evaluate(() => (
document.querySelector('#reportExport a.btn')?.getAttribute('href') || ''
));
expect(href).to.contain(substring);
}
async function expectExportLinkNotContains(substring) {
const href = await page.evaluate(() => (
document.querySelector('#reportExport a.btn')?.getAttribute('href') || ''
));
expect(href).to.not.contain(substring);
}
it('should hide expanded option when CSV or TSV format is selected and show it for everything else', async function () {
await page.goto(url);
await page.waitForNetworkIdle();
await page.waitForSelector('#widgetActionsgetPageUrls', { visible: true });
await page.waitForSelector('#widgetActionsgetPageUrls .dataTable', { visible: true });
await page.waitForFunction(() => (
!!document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection')
));
await page.evaluate(() => {
const button = document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection');
if (button) {
button.click();
}
});
await page.waitForSelector('#reportExport', { visible: true });
const formatsToCheck = ['CSV', 'JSON', 'TSV', 'HTML', 'RSS', 'XML'];
const formatsToHideExpanded = ['CSV', 'TSV'];
for (const format of formatsToCheck) {
await clickFormat(format);
const shouldShowExpanded = !formatsToHideExpanded.includes(format);
await page.waitForFunction(
(formatValue) => (
document.querySelector(`#reportExport input[name="format"][value="${formatValue}"]`)?.checked === true
),
{},
format,
);
const optionIsExpanded = await isOptionExpandSubtableVisible();
expect(optionIsExpanded, `format ${format} should ${shouldShowExpanded ? 'show' : 'hide'} expanded option`)
.to.equal(shouldShowExpanded);
}
});
it('should default to TSV with flat selected on open, then keep user subtable selection when switching formats', async function () {
await page.goto(url);
await page.waitForNetworkIdle();
await page.waitForSelector('#widgetActionsgetPageUrls', { visible: true });
await page.waitForSelector('#widgetActionsgetPageUrls .dataTable', { visible: true });
await page.waitForFunction(() => (
!!document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection')
));
await page.evaluate(() => {
const button = document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection');
if (button) {
button.click();
}
});
await page.waitForSelector('#reportExport', { visible: true });
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="TSV"]')?.checked === true
));
// Intended default on open: TSV + flat (when flat export is available).
await expectOptionChecked('option_flat', true);
await expectOptionChecked('option_expanded', false);
await expectExportLinkContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickFormat('JSON');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="JSON"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectOptionChecked('option_expanded', true);
await expectExportLinkNotContains('flat=1');
await expectExportLinkContains('expanded=1');
// CSV/TSV do not support expanded. In default mode, CSV/TSV keep flat checked.
await clickFormat('CSV');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="CSV"]')?.checked === true
));
await expectOptionChecked('option_flat', true);
await expectExportLinkContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickFormat('JSON');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="JSON"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectOptionChecked('option_expanded', true);
await expectExportLinkNotContains('flat=1');
await expectExportLinkContains('expanded=1');
// Clear both options and make sure this preference is remembered across format switches.
await clickOption('option_expanded');
await expectOptionChecked('option_flat', false);
await expectOptionChecked('option_expanded', false);
await expectExportLinkNotContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickFormat('TSV');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="TSV"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectExportLinkNotContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickFormat('JSON');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="JSON"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectOptionChecked('option_expanded', false);
await expectExportLinkNotContains('flat=1');
await expectExportLinkNotContains('expanded=1');
// Switch to flat preference and verify it is remembered across format switches.
await clickOption('option_flat');
await expectOptionChecked('option_flat', true);
await expectOptionChecked('option_expanded', false);
await expectExportLinkContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickFormat('CSV');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="CSV"]')?.checked === true
));
await expectOptionChecked('option_flat', true);
await expectExportLinkContains('flat=1');
await expectExportLinkNotContains('expanded=1');
// Unticking in CSV should immediately remove flat=1 and be remembered across formats.
await clickOption('option_flat');
await expectOptionChecked('option_flat', false);
await expectExportLinkNotContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickFormat('XML');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="XML"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectOptionChecked('option_expanded', false);
await expectExportLinkNotContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickFormat('CSV');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="CSV"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectExportLinkNotContains('flat=1');
await expectExportLinkNotContains('expanded=1');
});
it('should keep subtable controls available when table is flat and subtables count is zero', async function () {
await page.goto(url);
await page.waitForNetworkIdle();
await page.waitForSelector('#widgetActionsgetPageUrls', { visible: true });
await page.waitForSelector('#widgetActionsgetPageUrls .dataTable', { visible: true });
await page.waitForFunction(() => (
!!document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection')
));
await page.evaluate(() => {
const reportElement = document.querySelector('#widgetActionsgetPageUrls [data-report]');
if (!reportElement) {
return;
}
const $reportElement = window.$(reportElement);
const uiControlObject = $reportElement.data('uiControlObject');
if (!uiControlObject || !uiControlObject.param) {
return;
}
uiControlObject.numberOfSubtables = 0;
uiControlObject.param.flat = 1;
$reportElement.data('uiControlObject', uiControlObject);
const button = document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection');
if (button) {
button.click();
}
});
await page.waitForSelector('#reportExport', { visible: true });
expect(await isOptionVisible('option_flat')).to.equal(true);
await expectExportLinkContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickOption('option_flat');
await expectOptionChecked('option_flat', false);
await expectExportLinkNotContains('flat=1');
await clickFormat('CSV');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="CSV"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectExportLinkNotContains('flat=1');
await clickFormat('TSV');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="TSV"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectExportLinkNotContains('flat=1');
});
it('should hide subtable controls when there are truly no subtables', async function () {
await page.goto(url);
await page.waitForNetworkIdle();
await page.waitForSelector('#widgetActionsgetPageUrls', { visible: true });
await page.waitForSelector('#widgetActionsgetPageUrls .dataTable', { visible: true });
await page.waitForFunction(() => (
!!document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection')
));
await page.evaluate(() => {
const reportElement = document.querySelector('#widgetActionsgetPageUrls [data-report]');
if (!reportElement) {
return;
}
const $reportElement = window.$(reportElement);
const uiControlObject = $reportElement.data('uiControlObject');
if (!uiControlObject || !uiControlObject.param) {
return;
}
uiControlObject.numberOfSubtables = 0;
uiControlObject.param.flat = 0;
$reportElement.data('uiControlObject', uiControlObject);
const button = document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection');
if (button) {
button.click();
}
});
await page.waitForSelector('#reportExport', { visible: true });
expect(await isOptionVisible('option_flat')).to.equal(false);
expect(await isOptionVisible('option_show_dimensions')).to.equal(false);
expect(await isOptionExpandSubtableVisible()).to.equal(false);
await expectExportLinkNotContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickFormat('CSV');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="CSV"]')?.checked === true
));
await expectExportLinkNotContains('flat=1');
await expectExportLinkNotContains('expanded=1');
await clickFormat('TSV');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="TSV"]')?.checked === true
));
await expectExportLinkNotContains('flat=1');
await expectExportLinkNotContains('expanded=1');
});
it('should not restore flat when it was unchecked after being initially enabled', async function () {
await page.goto(url);
await page.waitForNetworkIdle();
await page.waitForSelector('#widgetActionsgetPageUrls', { visible: true });
await page.waitForSelector('#widgetActionsgetPageUrls .dataTable', { visible: true });
await page.waitForFunction(() => (
!!document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection')
));
await page.evaluate(() => {
const reportElement = document.querySelector('#widgetActionsgetPageUrls [data-report]');
if (!reportElement) {
return;
}
const $reportElement = window.$(reportElement);
const uiControlObject = $reportElement.data('uiControlObject');
if (!uiControlObject || !uiControlObject.param) {
return;
}
uiControlObject.param.flat = 1;
$reportElement.data('uiControlObject', uiControlObject);
const button = document.querySelector('#widgetActionsgetPageUrls .dataTableAction.activateExportSelection');
if (button) {
button.click();
}
});
await page.waitForSelector('#reportExport', { visible: true });
await expectOptionChecked('option_flat', true);
await clickOption('option_flat');
await expectOptionChecked('option_flat', false);
await expectOptionChecked('option_expanded', false);
await clickFormat('CSV');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="CSV"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectExportLinkNotContains('flat=1');
await clickFormat('JSON');
await page.waitForFunction(() => (
document.querySelector('#reportExport input[name="format"][value="JSON"]')?.checked === true
));
await expectOptionChecked('option_flat', false);
await expectOptionChecked('option_expanded', false);
await expectExportLinkNotContains('flat=1');
});
});
|