test: fix integration tests

pull/2571/head
Audric Ackermann 2 years ago
parent 69a07a8eb1
commit ec5f3307ac

@ -42,12 +42,18 @@ export class SessionPasswordDialog extends React.Component<Props, State> {
} }
public componentDidMount() { public componentDidMount() {
document.addEventListener('keyup', this.onEnterPressed);
setTimeout(() => { setTimeout(() => {
// tslint:disable-next-line: no-unused-expression // tslint:disable-next-line: no-unused-expression
this.passportInput && this.passportInput.focus(); this.passportInput && this.passportInput.focus();
}, 1); }, 1);
} }
public componentWillUnmount() {
document.removeEventListener('keyup', this.onEnterPressed);
}
public render() { public render() {
const { passwordAction } = this.props; const { passwordAction } = this.props;
let placeholders: Array<string> = []; let placeholders: Array<string> = [];
@ -93,7 +99,8 @@ export class SessionPasswordDialog extends React.Component<Props, State> {
this.passportInput = input; this.passportInput = input;
}} }}
placeholder={placeholders[0]} placeholder={placeholders[0]}
onKeyUp={this.onPasswordInput} onChange={this.onPasswordInput}
onPaste={this.onPasswordInput}
data-testid="password-input" data-testid="password-input"
/> />
{passwordAction !== 'enter' && passwordAction !== 'remove' && ( {passwordAction !== 'enter' && passwordAction !== 'remove' && (
@ -101,7 +108,8 @@ export class SessionPasswordDialog extends React.Component<Props, State> {
type="password" type="password"
id="password-modal-input-confirm" id="password-modal-input-confirm"
placeholder={placeholders[1]} placeholder={placeholders[1]}
onKeyUp={this.onPasswordConfirmInput} onChange={this.onPasswordConfirmInput}
onPaste={this.onPasswordConfirmInput}
data-testid="password-input-confirm" data-testid="password-input-confirm"
/> />
)} )}
@ -110,7 +118,8 @@ export class SessionPasswordDialog extends React.Component<Props, State> {
type="password" type="password"
id="password-modal-input-reconfirm" id="password-modal-input-reconfirm"
placeholder={placeholders[2]} placeholder={placeholders[2]}
onKeyUp={this.onPasswordRetypeInput} onPaste={this.onPasswordRetypeInput}
onChange={this.onPasswordRetypeInput}
data-testid="password-input-reconfirm" data-testid="password-input-reconfirm"
/> />
)} )}
@ -258,6 +267,13 @@ export class SessionPasswordDialog extends React.Component<Props, State> {
this.closeDialog(); this.closeDialog();
} }
private async onEnterPressed(event: any) {
if (event.key === 'Enter') {
event.stopPropagation();
return this.setPassword();
}
}
private async handleActionEnter(enteredPassword: string) { private async handleActionEnter(enteredPassword: string) {
// be sure the password is valid // be sure the password is valid
if (!this.validatePassword(enteredPassword)) { if (!this.validatePassword(enteredPassword)) {
@ -321,30 +337,18 @@ export class SessionPasswordDialog extends React.Component<Props, State> {
window.inboxStore?.dispatch(sessionPassword(null)); window.inboxStore?.dispatch(sessionPassword(null));
} }
private async onPasswordInput(event: any) { private onPasswordInput(event: any) {
if (event.key === 'Enter') {
return this.setPassword();
}
const currentPasswordEntered = event.target.value; const currentPasswordEntered = event.target.value;
this.setState({ currentPasswordEntered }); this.setState({ currentPasswordEntered });
} }
private async onPasswordConfirmInput(event: any) { private onPasswordConfirmInput(event: any) {
if (event.key === 'Enter') {
return this.setPassword();
}
const currentPasswordConfirmEntered = event.target.value; const currentPasswordConfirmEntered = event.target.value;
this.setState({ currentPasswordConfirmEntered }); this.setState({ currentPasswordConfirmEntered });
} }
private async onPasswordRetypeInput(event: any) { private onPasswordRetypeInput(event: any) {
if (event.key === 'Enter') {
return this.setPassword();
}
const currentPasswordRetypeEntered = event.target.value; const currentPasswordRetypeEntered = event.target.value;
this.setState({ currentPasswordRetypeEntered }); this.setState({ currentPasswordRetypeEntered });
} }
} }

@ -97,6 +97,7 @@ export const SettingsCategoryPrivacy = (props: {
displayPasswordModal('change', props.onPasswordUpdated); displayPasswordModal('change', props.onPasswordUpdated);
}} }}
buttonText={window.i18n('changePassword')} buttonText={window.i18n('changePassword')}
dataTestId="change-password-settings-button"
/> />
)} )}
{props.hasPassword && ( {props.hasPassword && (
@ -108,6 +109,7 @@ export const SettingsCategoryPrivacy = (props: {
}} }}
buttonColor={SessionButtonColor.Danger} buttonColor={SessionButtonColor.Danger}
buttonText={window.i18n('removePassword')} buttonText={window.i18n('removePassword')}
dataTestId="remove-password-settings-button"
/> />
)} )}
</> </>

@ -10,6 +10,7 @@ import {
waitForReadableMessageWithText, waitForReadableMessageWithText,
waitForTestIdWithText, waitForTestIdWithText,
} from './utils'; } from './utils';
import { sleepFor } from '../../session/utils/Promise';
let windows: Array<Page> = []; let windows: Array<Page> = [];
test.beforeEach(beforeAllClean); test.beforeEach(beforeAllClean);
@ -50,7 +51,9 @@ test('Disappearing Messages', async () => {
'readable-message', 'readable-message',
'You set the disappearing message timer to 5 seconds' 'You set the disappearing message timer to 5 seconds'
); );
await sleepFor(2000);
// Check top right hand corner indicator // Check top right hand corner indicator
await waitForTestIdWithText(windowA, 'disappearing-messages-indicator', '5 seconds'); await waitForTestIdWithText(windowA, 'disappearing-messages-indicator', '5 seconds');
// Send message // Send message
// Wait for tick of confirmation // Wait for tick of confirmation
@ -87,7 +90,7 @@ test('Disappearing Messages', async () => {
`${userA.userName} set the disappearing message timer to 5 seconds` `${userA.userName} set the disappearing message timer to 5 seconds`
); );
// Wait 5 seconds // Wait 5 seconds
await waitForMatchingText(windowB, `${userA.userName} disabled disappearing messages`); await waitForMatchingText(windowB, `${userA.userName} has turned off disappearing messages.`);
// verify message is deleted in windowB // verify message is deleted in windowB
const errorDesc2 = 'Should not be found'; const errorDesc2 = 'Should not be found';
try { try {

@ -1,4 +1,5 @@
import { _electron, Page, test } from '@playwright/test'; import { _electron, Page, test } from '@playwright/test';
import { sleepFor } from '../../session/utils/Promise';
import { beforeAllClean, forceCloseAllWindows } from './setup/beforeEach'; import { beforeAllClean, forceCloseAllWindows } from './setup/beforeEach';
import { newUser } from './setup/new_user'; import { newUser } from './setup/new_user';
import { openAppAndWait } from './setup/open'; import { openAppAndWait } from './setup/open';
@ -36,42 +37,40 @@ test.describe('Password checks', () => {
await clickOnTestIdWithText(window, 'set-password-button'); await clickOnTestIdWithText(window, 'set-password-button');
// Enter password // Enter password
await typeIntoInput(window, 'password-input', testPassword); await typeIntoInput(window, 'password-input', testPassword);
await window.keyboard.press('Delete');
// Confirm password // Confirm password
await typeIntoInput(window, 'password-input-confirm', testPassword); await typeIntoInput(window, 'password-input-confirm', testPassword);
await window.keyboard.press('Delete'); // Click Done
// Click OK await clickOnMatchingText(window, 'Done');
await clickOnMatchingText(window, 'OK');
// await window.keyboard.press('Enter');
// Check toast notification // Check toast notification
await waitForTestIdWithText( await waitForTestIdWithText(
window, window,
'session-toast', 'session-toast',
'Your password has been set. Please keep it safe' 'Your password has been set. Please keep it safe.'
); );
// Click on settings tab
await sleepFor(300);
await clickOnTestIdWithText(window, 'settings-section');
// Type password into input field // Type password into input field
await typeIntoInput(window, 'password-input', testPassword); await typeIntoInput(window, 'password-input', testPassword);
// Click OK
await clickOnMatchingText(window, 'OK'); // Click Done
await clickOnMatchingText(window, 'Done');
await clickOnTestIdWithText(window, 'settings-section');
// Change password // Change password
await clickOnMatchingText(window, 'Change Password'); await clickOnTestIdWithText(window, 'change-password-settings-button', 'Change Password');
console.warn('clicked Change Password');
// Enter old password // Enter old password
await typeIntoInput(window, 'password-input', testPassword); await typeIntoInput(window, 'password-input', testPassword);
await window.keyboard.press('Delete');
// Enter new password // Enter new password
await typeIntoInput(window, 'password-input-confirm', newTestPassword); await typeIntoInput(window, 'password-input-confirm', newTestPassword);
await window.keyboard.press('Delete');
// await window.fill('#password-modal-input-confirm', newTestPassword);
await window.keyboard.press('Tab'); await window.keyboard.press('Tab');
// Confirm new password // Confirm new password
await typeIntoInput(window, 'password-input-reconfirm', newTestPassword); await typeIntoInput(window, 'password-input-reconfirm', newTestPassword);
await window.keyboard.press('Delete');
// await window.fill('#password-modal-input-reconfirm', newTestPassword);
// Press enter on keyboard // Press enter on keyboard
await window.keyboard.press('Enter'); await window.keyboard.press('Enter');
// Select OK
await clickOnMatchingText(window, 'OK');
// Check toast notification for 'changed password' // Check toast notification for 'changed password'
await waitForTestIdWithText( await waitForTestIdWithText(
window, window,
@ -92,36 +91,44 @@ test.describe('Password checks', () => {
await clickOnMatchingText(window, 'Set Password'); await clickOnMatchingText(window, 'Set Password');
// Enter password // Enter password
await typeIntoInput(window, 'password-input', testPassword); await typeIntoInput(window, 'password-input', testPassword);
await window.keyboard.press('Delete');
// Confirm password // Confirm password
await typeIntoInput(window, 'password-input-confirm', testPassword); await typeIntoInput(window, 'password-input-confirm', testPassword);
await window.keyboard.press('Delete'); // Click Done
// Click OK
await window.keyboard.press('Enter'); await window.keyboard.press('Enter');
// // Click on settings tab
await sleepFor(100);
await clickOnTestIdWithText(window, 'settings-section');
// Type password into input field // Type password into input field
await sleepFor(100);
await typeIntoInput(window, 'password-input', testPassword); await typeIntoInput(window, 'password-input', testPassword);
await window.keyboard.press('Delete'); // Click Done
// Click OK await clickOnMatchingText(window, 'Done');
await clickOnMatchingText(window, 'OK'); await sleepFor(100);
// Navigate away from settings tab await window.mouse.click(0, 0);
await clickOnTestIdWithText(window, 'message-section'); await clickOnTestIdWithText(window, 'message-section');
await sleepFor(100);
// // Click on settings tab // // Click on settings tab
await sleepFor(1000);
await clickOnTestIdWithText(window, 'settings-section'); await clickOnTestIdWithText(window, 'settings-section');
// // Try with incorrect password // // Try with incorrect password
await typeIntoInput(window, 'password-input', '0000'); await typeIntoInput(window, 'password-input', '000000');
await window.keyboard.press('Delete');
// Confirm // Confirm
await clickOnMatchingText(window, 'OK'); await clickOnMatchingText(window, 'Done');
// // invalid password banner showing? // // invalid password banner showing?
await waitForMatchingText(window, 'Invalid password'); await waitForMatchingText(window, 'Invalid password');
// // Empty password // // Empty password
// // Navigate away from settings tab // // Navigate away from settings tab
await window.mouse.click(0, 0);
await sleepFor(100);
await clickOnTestIdWithText(window, 'message-section'); await clickOnTestIdWithText(window, 'message-section');
await sleepFor(100);
// // Click on settings tab // // Click on settings tab
await clickOnTestIdWithText(window, 'settings-section'); await clickOnTestIdWithText(window, 'settings-section');
// // No password entered // // No password entered
await clickOnMatchingText(window, 'OK'); await clickOnMatchingText(window, 'Done');
// // Banner should ask for password to be entered // // Banner should ask for password to be entered
await waitForMatchingText(window, 'Please enter your password'); await waitForMatchingText(window, 'Enter password');
}); });
}); });

@ -28,15 +28,17 @@ export async function waitForMatchingText(window: Page, text: string) {
} }
export async function clickOnMatchingText(window: Page, text: string, rightButton = false) { export async function clickOnMatchingText(window: Page, text: string, rightButton = false) {
console.info(`clickOnMatchingText: "${text}"`);
return window.click(`"${text}"`, rightButton ? { button: 'right' } : undefined); return window.click(`"${text}"`, rightButton ? { button: 'right' } : undefined);
} }
export async function clickOnTestIdWithText(window: Page, dataTestId: string, text?: string) { export async function clickOnTestIdWithText(window: Page, dataTestId: string, text?: string) {
if (text) { console.info(`clickOnTestIdWithText with testId:${dataTestId} and text:${text ? text : 'none'}`);
return window.click(`css=[data-testid=${dataTestId}]:has-text("${text}")`);
} const builtSelector = !text
? `css=[data-testid=${dataTestId}]`
: `css=[data-testid=${dataTestId}]:has-text("${text}")`;
const builtSelector = `css=[data-testid=${dataTestId}]`;
await window.waitForSelector(builtSelector); await window.waitForSelector(builtSelector);
return window.click(builtSelector); return window.click(builtSelector);
} }
@ -46,6 +48,7 @@ export function getMessageTextContentNow() {
} }
export async function typeIntoInput(window: Page, dataTestId: string, text: string) { export async function typeIntoInput(window: Page, dataTestId: string, text: string) {
console.info(`typeIntoInput testId: ${dataTestId} : "${text}"`);
const builtSelector = `css=[data-testid=${dataTestId}]`; const builtSelector = `css=[data-testid=${dataTestId}]`;
return window.fill(builtSelector, text); return window.fill(builtSelector, text);
} }

Loading…
Cancel
Save