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
|
/*!
* Matomo - free/libre analytics platform
*
* Screenshot integration tests.
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
describe("BotTracking", function () {
this.timeout(0);
this.fixture = "Piwik\\Plugins\\BotTracking\\tests\\Fixtures\\BotTraffic";
var generalParams = 'idSite=1&period=day&date=2025-02-02',
urlBase = 'module=CoreHome&action=index&' + generalParams;
it('should render AI Assistants > AI Chatbots Overview page with evolution and sparkline', async function () {
await page.goto("?" + urlBase + "#?" + generalParams + "&category=General_AIAssistants&subcategory=BotTracking_AIChatbotsOverview");
await page.waitForNetworkIdle();
await page.hover('.jqplot-seriespicker');
const availableMetrics = await page.$$('.jqplot-seriespicker input.select');
expect(availableMetrics.length).to.equal(8);
await page.mouse.move(0, 0);
const sparklines = await page.$$('.sparkline-metrics');
expect(sparklines.length).to.equal(8);
var elem = await page.$('.pageWrap');
expect(await elem.screenshot()).to.matchImage('bot_overview');
});
it('should not have shown a "no recent tracking requests" message', async function () {
const notifications = await page.$$('.bot-tracking-no-recent-requests-message');
expect(notifications.length).to.equal(0);
})
it('should not show unique pages and documents metric for higher periods', async function () {
await page.goto("?" + urlBase + "#?idSite=1&period=week&date=2025-02-02&category=General_AIAssistants&subcategory=BotTracking_AIChatbotsOverview");
await page.waitForNetworkIdle();
await page.hover('.jqplot-seriespicker');
const availableMetrics = await page.$$('.jqplot-seriespicker input.select');
expect(availableMetrics.length).to.equal(6);
const sparklines = await page.$$('.sparkline-metrics');
expect(sparklines.length).to.equal(6);
});
it('should render AI Assistants > AI Chatbots Overview bot detail report', async function () {
await page.goto("?" + urlBase + "#?" + generalParams + "&category=General_AIAssistants&subcategory=BotTracking_AIChatbotsOverview");
await page.waitForNetworkIdle();
const row = await page.jQuery('tr.subDataTable:first');
await row.click();
await page.mouse.move(-10, -10);
await page.waitForNetworkIdle();
await page.waitForTimeout(250); // rendering
var elem = await page.$('#widgetBotTrackinggetAIChatbotRequests');
expect(await elem.screenshot()).to.matchImage('bot_requests');
});
it('should switch to secondary dimension when clicked', async function () {
await page.evaluate(() => $('.datatableRelatedReports li span:contains("Document Requests")').click());
await page.waitForNetworkIdle();
const row = await page.jQuery('tr.subDataTable:first');
await row.click();
await page.mouse.move(-10, -10);
await page.waitForNetworkIdle();
await page.waitForTimeout(250); // rendering
var elem = await page.$('#widgetBotTrackinggetAIChatbotRequests');
expect(await elem.screenshot()).to.matchImage('bot_requests_documents');
});
it('should show segment not supported footer message in AI bot reports when segmented', async function () {
const segment = encodeURIComponent('visitConverted==1');
await page.goto("?" + urlBase + "#?" + generalParams + "&category=General_AIAssistants&subcategory=BotTracking_AIChatbotsOverview&segment=" + segment);
await page.waitForNetworkIdle();
const expectedMessage = 'Report does not support segmentation. The data displayed is your standard, unsegmented report data.';
const matchingFooterMessages = await page.$$eval('.datatableFooterMessage', (nodes, expected) => {
return nodes
.map((node) => (node.textContent || '').trim())
.filter((text) => text.includes(expected))
.length;
}, expectedMessage);
expect(matchingFooterMessages).to.be.at.least(3);
});
});
|