Rocket.Chat.ReactNative/e2e/tests/assorted/14-in-app-notification.spec.ts

62 lines
2.1 KiB
TypeScript
Raw Normal View History

import { device, waitFor, element, by } from 'detox';
import { navigateToLogin, login, sleep, tapBack, navigateToRoom, checkRoomTitle } from '../../helpers/app';
2023-02-22 17:46:16 +00:00
import { sendMessage, post, ITestUser, createRandomUser, createRandomRoom } from '../../helpers/data_setup';
2023-01-25 19:03:02 +00:00
const waitForInAppNotificationAnimation = async () => {
await sleep(500);
};
2023-01-25 19:03:02 +00:00
describe('InApp Notification', () => {
let dmCreatedRid: string;
2023-02-22 17:46:16 +00:00
let sender: ITestUser;
let receiver: ITestUser;
let room: string;
2023-01-25 19:03:02 +00:00
beforeAll(async () => {
2023-02-22 17:46:16 +00:00
sender = await createRandomUser();
receiver = await createRandomUser();
({ name: room } = await createRandomRoom(sender));
2023-01-25 19:03:02 +00:00
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
await navigateToLogin();
2023-02-21 20:38:23 +00:00
await login(receiver.username, receiver.password);
const result = await post('im.create', { username: sender.username }, receiver);
2023-01-25 19:03:02 +00:00
dmCreatedRid = result.data.room.rid;
});
describe('receive in RoomsListView', () => {
const text = 'Message in DM';
it('should tap on InApp Notification', async () => {
2023-02-21 20:38:23 +00:00
await sendMessage(sender, dmCreatedRid, text);
2023-01-25 19:03:02 +00:00
await waitFor(element(by.id(`in-app-notification-${text}`)))
2023-02-20 20:34:51 +00:00
.toBeVisible()
2023-01-25 19:03:02 +00:00
.withTimeout(2000);
await waitForInAppNotificationAnimation();
2023-01-25 19:03:02 +00:00
await element(by.id(`in-app-notification-${text}`)).tap();
2023-02-21 20:38:23 +00:00
await checkRoomTitle(sender.username);
await tapBack();
2023-01-25 19:03:02 +00:00
});
});
describe('receive in another room', () => {
const text = 'Another msg';
it('should receive and tap InAppNotification while in another room', async () => {
2023-02-22 17:46:16 +00:00
await navigateToRoom(room);
2023-02-21 20:38:23 +00:00
await sendMessage(sender, dmCreatedRid, text);
2023-01-25 19:03:02 +00:00
await waitFor(element(by.id(`in-app-notification-${text}`)))
.toExist()
.withTimeout(2000);
await waitForInAppNotificationAnimation();
2023-01-25 19:03:02 +00:00
await element(by.id(`in-app-notification-${text}`)).tap();
2023-02-21 20:38:23 +00:00
await checkRoomTitle(sender.username);
2023-01-25 19:03:02 +00:00
});
it('should tap back and go back to RoomsListView', async () => {
2023-01-25 19:03:02 +00:00
await tapBack();
await waitFor(element(by.id('rooms-list-view')))
.toBeVisible()
.withTimeout(2000);
2023-01-25 19:03:02 +00:00
});
});
});