Files
mattermost-mobile/detox/e2e/test/account/edit_profile.e2e.ts

107 lines
4.9 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
// *******************************************************************
// - [#] indicates a test step (e.g. # Go to a screen)
// - [*] indicates an assertion (e.g. * Check the title)
// - Use element testID when selecting an element. Create one if none.
// *******************************************************************
import {Setup} from '@support/server_api';
import {
serverOneUrl,
siteOneUrl,
} from '@support/test_config';
import {
AccountScreen,
EditProfileScreen,
HomeScreen,
LoginScreen,
ServerScreen,
} from '@support/ui/screen';
import {getRandomId} from '@support/utils';
import {expect} from 'detox';
describe('Account - Edit Profile', () => {
const serverOneDisplayName = 'Server 1';
let testUser: any;
beforeAll(async () => {
const {user} = await Setup.apiInit(siteOneUrl);
testUser = user;
// # Log in to server and go to account screen
await ServerScreen.connectToServer(serverOneUrl, serverOneDisplayName);
await LoginScreen.login(testUser);
await AccountScreen.open();
});
beforeEach(async () => {
// * Verify on account screen
await AccountScreen.toBeVisible();
});
afterAll(async () => {
// # Log out
await HomeScreen.logout();
});
it('MM-T4989_1 - should match elements on edit profile screen', async () => {
// # Open edit profile screen
await EditProfileScreen.open();
// * Verify basic elements on edit profile screen
await expect(EditProfileScreen.closeButton).toBeVisible();
await expect(EditProfileScreen.saveButton).toBeVisible();
await expect(EditProfileScreen.getEditProfilePicture(testUser.id)).toBeVisible();
await expect(EditProfileScreen.firstNameInput).toHaveValue(testUser.first_name);
await expect(EditProfileScreen.lastNameInput).toHaveValue(testUser.last_name);
await expect(EditProfileScreen.usernameInput).toHaveValue(testUser.username);
await expect(EditProfileScreen.emailInputDisabled).toHaveValue(testUser.email);
await expect(EditProfileScreen.emailInputDescription).toHaveText('Email must be updated using a web client or desktop application.');
await expect(EditProfileScreen.nicknameInput).toHaveValue(testUser.nickname);
await expect(EditProfileScreen.positionInput).toHaveValue(testUser.position);
// # Go back to account screen
await EditProfileScreen.close();
});
it('MM-T4989_2 - should be able to edit profile and save', async () => {
// # Open edit profile screen, edit fields, and tap on save button
const suffix = getRandomId(3);
await EditProfileScreen.open();
await EditProfileScreen.firstNameInput.replaceText(`${testUser.first_name}${suffix}`);
await EditProfileScreen.lastNameInput.replaceText(`${testUser.last_name}${suffix}`);
await EditProfileScreen.scrollView.tap({x: 1, y: 1});
await EditProfileScreen.scrollView.scroll(100, 'down');
await EditProfileScreen.usernameInput.clearText();
await EditProfileScreen.usernameInput.typeText(`${testUser.username}${suffix}`);
await EditProfileScreen.scrollView.tap({x: 1, y: 1});
await EditProfileScreen.scrollView.scroll(100, 'down');
await EditProfileScreen.nicknameInput.replaceText(`${testUser.nickname}${suffix}`);
await EditProfileScreen.scrollView.tap({x: 1, y: 1});
await EditProfileScreen.positionInput.replaceText(`${testUser.position}${suffix}`);
await EditProfileScreen.saveButton.tap();
// * Verify on account screen and user full name and username are updated
await AccountScreen.toBeVisible();
const {userInfoUserDisplayName, userInfoUsername} = AccountScreen.getUserInfo(testUser.id);
await expect(userInfoUserDisplayName).toHaveText(`${testUser.first_name}${suffix} ${testUser.last_name}${suffix} (${testUser.nickname}${suffix})`);
await expect(userInfoUsername).toHaveText(`@${testUser.username}${suffix}`);
// # Open edit profile screen
await EditProfileScreen.open();
// * Verify edited profile fields contain the updated values
await expect(EditProfileScreen.firstNameInput).toHaveValue(`${testUser.first_name}${suffix}`);
await expect(EditProfileScreen.lastNameInput).toHaveValue(`${testUser.last_name}${suffix}`);
await expect(EditProfileScreen.usernameInput).toHaveValue(`${testUser.username}${suffix}`);
await expect(EditProfileScreen.emailInputDisabled).toHaveValue(testUser.email);
await expect(EditProfileScreen.nicknameInput).toHaveValue(`${testUser.nickname}${suffix}`);
await expect(EditProfileScreen.positionInput).toHaveValue(`${testUser.position}${suffix}`);
// # Go back to account screen
await EditProfileScreen.close();
});
});