feat: fixed integration tests

except for linked device profile sync, need to update avatar-update-blue files for linux
pull/2765/head
William Grant 2 years ago
parent 41d2760927
commit 853c9a2107

@ -116,7 +116,12 @@ export const EditProfilePictureModal = (props: EditProfilePictureModalProps) =>
showHeader={true}
showExitIcon={true}
>
<div className="avatar-center" role="button" onClick={handleAvatarClick}>
<div
className="avatar-center"
role="button"
onClick={handleAvatarClick}
data-testid={'image-upload-click'}
>
<StyledAvatarContainer className="avatar-center-inner">
{newAvatarObjectUrl || avatarPath ? (
<ProfileAvatar
@ -142,6 +147,7 @@ export const EditProfilePictureModal = (props: EditProfilePictureModalProps) =>
buttonType={SessionButtonType.Simple}
onClick={handleUpload}
disabled={newAvatarObjectUrl === avatarPath}
dataTestId="save-button-profile-update"
/>
<SessionButton
text={window.i18n('remove')}

@ -79,13 +79,11 @@ test('Check profile picture syncs', async () => {
await waitForTestIdWithText(windowA, 'copy-button-profile-update', 'Copy');
await clickOnTestIdWithText(windowA, 'image-upload-section');
await clickOnTestIdWithText(windowA, 'image-upload-click');
await clickOnTestIdWithText(windowA, 'save-button-profile-update');
await waitForTestIdWithText(windowA, 'loading-spinner');
await waitForTestIdWithText(windowA, 'copy-button-profile-update', 'Copy');
await clickOnTestIdWithText(windowA, 'modal-close-button');
await sleepFor(500);
await sleepFor(5000);
const leftpaneAvatarContainer = await waitForTestIdWithText(windowB, 'leftpane-primary-avatar');
await sleepFor(500);
const screenshot = await leftpaneAvatarContainer.screenshot({

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,5 +1,5 @@
import { Page } from '@playwright/test';
import { readdirSync, rmdirSync } from 'fs-extra';
import { readdirSync, rm } from 'fs-extra';
import { join } from 'path';
import { homedir } from 'os';
import { isLinux, isMacOS } from '../../../OS';
@ -25,9 +25,9 @@ function cleanUpOtherTest() {
alreadyCleanedWaiting = true;
const parentFolderOfAllDataPath = isMacOS()
? '~/Library/Application Support/'
? join(homedir(), 'Library', 'Application Support')
: isLinux()
? `${homedir()}/.config/`
? join(homedir(), '.config')
: null;
if (!parentFolderOfAllDataPath) {
throw new Error('Only macOS is currrently supported ');
@ -43,7 +43,7 @@ function cleanUpOtherTest() {
allAppDataPath.map(folder => {
const pathToRemove = join(parentFolderOfAllDataPath, folder);
rmdirSync(pathToRemove, { recursive: true });
rm(pathToRemove, { recursive: true }, () => pathToRemove);
});
console.info('...done');
}

@ -132,7 +132,7 @@ sessionTestOneWindow('Change username', async ([window]) => {
await window.click('.session-icon-button.small');
});
sessionTestOneWindow('Change avatar', async ([window]) => {
sessionTestOneWindow('Change profile picture', async ([window]) => {
await newUser(window, 'Alice');
// Open profile
await clickOnTestIdWithText(window, 'leftpane-primary-avatar');
@ -140,13 +140,11 @@ sessionTestOneWindow('Change avatar', async ([window]) => {
await waitForTestIdWithText(window, 'copy-button-profile-update', 'Copy');
await clickOnTestIdWithText(window, 'image-upload-section');
await clickOnTestIdWithText(window, 'image-upload-click');
await clickOnTestIdWithText(window, 'save-button-profile-update');
await waitForTestIdWithText(window, 'loading-spinner');
await waitForTestIdWithText(window, 'copy-button-profile-update', 'Copy');
await clickOnTestIdWithText(window, 'modal-close-button');
await sleepFor(500);
await sleepFor(5000);
const leftpaneAvatarContainer = await waitForTestIdWithText(window, 'leftpane-primary-avatar');
await sleepFor(500);
const screenshot = await leftpaneAvatarContainer.screenshot({

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1014 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Loading…
Cancel
Save