# What this PR does Related to https://github.com/grafana/irm/pull/137 (**NOTE**: should only be merged after those changed are back-merged here into `grafana/oncall`) ## Which issue(s) this PR closes Also, fixes https://github.com/grafana/oncall/issues/5028 --------- Co-authored-by: Dominik <dominik.broj@grafana.com>
94 lines
3.7 KiB
TypeScript
94 lines
3.7 KiB
TypeScript
import { Locator, Page } from '@playwright/test';
|
|
|
|
import { clickButton, fillInInputByPlaceholderValue, selectDropdownValue } from './forms';
|
|
import { closeModal } from './modals';
|
|
import { goToOnCallPage } from './navigation';
|
|
import { getPhoneNumber, getVerificationCodeFromSms, waitForSms } from './phone';
|
|
|
|
type NotifyBy = 'SMS' | 'Phone call';
|
|
|
|
const openUserSettingsModal = async (page: Page): Promise<void> => {
|
|
await goToOnCallPage(page, 'users');
|
|
await clickButton({ page, buttonText: 'View my profile' });
|
|
};
|
|
|
|
const getForgetPhoneNumberButton = (page: Page): Locator => page.locator('button >> text=Forget Phone Number');
|
|
|
|
export const verifyUserPhoneNumber = async (page: Page): Promise<void> => {
|
|
// open the user settings modal
|
|
await openUserSettingsModal(page);
|
|
|
|
// go to the Phone Verification tab
|
|
await page.getByTestId('tab-phone-verification').click();
|
|
|
|
// check to see if we've already verified our phone number.. no need to do it more than once
|
|
if (await getForgetPhoneNumberButton(page).isVisible()) {
|
|
await closeModal(page);
|
|
return;
|
|
}
|
|
|
|
// get the phone number we will use
|
|
const phoneNumber = await getPhoneNumber();
|
|
|
|
/**
|
|
* input the phone number and submit the form
|
|
* on the backend this should trigger twilio to send out an SMS verification code
|
|
*/
|
|
await fillInInputByPlaceholderValue(page, 'Please enter the phone number with country code', phoneNumber.phoneNumber);
|
|
await clickButton({ page, buttonText: 'Send Code' });
|
|
|
|
// wait for the SMS verification code to arrive
|
|
const sms = await waitForSms();
|
|
|
|
// take the SMS verification code that we just received, input it into the form, and submit the form
|
|
await fillInInputByPlaceholderValue(page, 'Please enter the code', getVerificationCodeFromSms(sms));
|
|
await clickButton({ page, buttonText: 'Verify' });
|
|
|
|
// wait for a confirmation that the number has been verified and then close the modal
|
|
await getForgetPhoneNumberButton(page).click();
|
|
await closeModal(page);
|
|
};
|
|
|
|
const getDefaultNotificationSettingsSectionByTestId = (page: Page): Locator =>
|
|
page.getByTestId('default-personal-notification-settings');
|
|
|
|
/**
|
|
* gets the first row of our default notification settings
|
|
* and then gets the notification type dropdown
|
|
*/
|
|
const getFirstDefaultNotificationSettingTypeDropdown = async (page: Page): Promise<Locator> => {
|
|
const firstDefaultNotificationSettingRow = getDefaultNotificationSettingsSectionByTestId(page).locator('li >> nth=0');
|
|
|
|
// get the notification type dropdown specifically
|
|
return firstDefaultNotificationSettingRow.locator('div[class*="input-wrapper"] >> nth=1');
|
|
};
|
|
|
|
export const configureUserNotificationSettings = async (page: Page, notifyBy: NotifyBy): Promise<void> => {
|
|
// open the user settings modal
|
|
await openUserSettingsModal(page);
|
|
|
|
// select our notification type, first check if we have any already defined, if so, click the
|
|
// "Add Notification Step" button
|
|
const defaultNotificationSettingsSection = getDefaultNotificationSettingsSectionByTestId(page);
|
|
const addNotificationStepText = 'Add notification step';
|
|
|
|
if (!(await defaultNotificationSettingsSection.locator(`button >> text=${addNotificationStepText}`).isVisible())) {
|
|
await clickButton({
|
|
page,
|
|
buttonText: addNotificationStepText,
|
|
startingLocator: defaultNotificationSettingsSection,
|
|
});
|
|
}
|
|
|
|
const firstDefaultNotificationTypeDropdopdown = await getFirstDefaultNotificationSettingTypeDropdown(page);
|
|
await selectDropdownValue({
|
|
page,
|
|
value: notifyBy,
|
|
selectType: 'grafanaSelect',
|
|
startingLocator: firstDefaultNotificationTypeDropdopdown,
|
|
optionExactMatch: false, // there are emojis at the end
|
|
});
|
|
|
|
// close the modal
|
|
await closeModal(page);
|
|
};
|