قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* Add error message into danger/error box * Build vue files * adds UI test --------- Co-authored-by: innocraft-automation <innocraft-automation@users.noreply.github.com> Co-authored-by: sgiehl <stefan@matomo.org>
76 خطوط
2.5 KiB
JavaScript
76 خطوط
2.5 KiB
JavaScript
/*!
|
|
* 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("MobileMessaging", function () {
|
|
this.fixture = "Piwik\\Tests\\Fixtures\\EmptySite";
|
|
|
|
// required to ensure no provider is set initially
|
|
this.optionsOverride = {
|
|
'persist-fixture-data': false,
|
|
};
|
|
|
|
async function screenshotPageWrap() {
|
|
const pageWrap = await page.$('.pageWrap');
|
|
const screenshot = await pageWrap.screenshot();
|
|
return screenshot;
|
|
}
|
|
|
|
it('should load the Settings > Mobile Messaging admin page correctly', async function () {
|
|
await page.goto("?idSite=1&period=year&date=2022-08-09&module=MobileMessaging&action=index");
|
|
await page.waitForNetworkIdle();
|
|
|
|
expect(await screenshotPageWrap()).to.matchImage('admin');
|
|
});
|
|
|
|
it('should switch the SMS provider correctly', async function () {
|
|
await page.evaluate(function () {
|
|
$('[name=smsProviders]').val('string:ASPSMS').trigger('change');
|
|
});
|
|
await page.waitForTimeout(200);
|
|
await page.waitForNetworkIdle();
|
|
await page.waitForTimeout(200);
|
|
|
|
expect(await screenshotPageWrap()).to.matchImage('admin_provider');
|
|
});
|
|
|
|
it('should show phone number management when provider was selected', async function () {
|
|
await page.evaluate(function () {
|
|
$('[name=smsProviders]').val('string:StubbedProvider').trigger('change');
|
|
});
|
|
|
|
await page.waitForSelector('input#apiKey', {visible: true});
|
|
await page.type('input#apiKey', '0123456789');
|
|
await page.evaluate(() => $('#apiAccountSubmit input').click());
|
|
|
|
await page.waitForNetworkIdle();
|
|
|
|
expect(await screenshotPageWrap()).to.matchImage('admin_numbers_initial');
|
|
});
|
|
|
|
it('should add a phone number for validation', async function () {
|
|
await page.type('input#countryCallingCode', '44');
|
|
await page.type('input#newPhoneNumber', '112233445566');
|
|
await page.click('.addNumber input');
|
|
|
|
await page.waitForNetworkIdle();
|
|
|
|
expect(await screenshotPageWrap()).to.matchImage('admin_numbers_added');
|
|
});
|
|
|
|
it('should show an provider error accordingly', async function () {
|
|
testEnvironment.optionsOverride['_MobileMessagingSettings'] = '{"Provider":"InValid","APIKey":[]}';
|
|
testEnvironment.save();
|
|
|
|
await page.goto("?idSite=1&period=year&date=2022-08-09&module=MobileMessaging&action=index");
|
|
await page.waitForNetworkIdle();
|
|
|
|
expect(await screenshotPageWrap()).to.matchImage('admin_provider_error');
|
|
});
|
|
});
|