123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- const Utils = require('./Utils');
- const TestIDs = require('../playground/src/testIDs');
- const Android = require('./AndroidUtils');
-
- const { elementByLabel, elementById, sleep } = Utils;
-
- describe('modal', () => {
- beforeEach(async () => {
- await device.relaunchApp();
- await elementById(TestIDs.NAVIGATION_TAB).tap();
- await elementById(TestIDs.MODAL_BTN).tap();
- });
-
- it('show modal', async () => {
- await expect(elementById(TestIDs.MODAL_SCREEN_HEADER)).toBeVisible();
- });
-
- it('dismiss modal', async () => {
- await expect(elementById(TestIDs.MODAL_SCREEN_HEADER)).toBeVisible();
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementById(TestIDs.NAVIGATION_TAB)).toBeVisible();
- });
-
- it('unmount modal when dismissed', async () => {
- await expect(elementById(TestIDs.MODAL_SCREEN_HEADER)).toBeVisible();
- await elementById(TestIDs.MODAL_LIFECYCLE_BTN).tap();
- await expect(elementByLabel('didAppear')).toBeVisible();
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementByLabel('componentWillUnmount')).toBeVisible();
- await elementByLabel('OK').atIndex(0).tap();
- await expect(elementByLabel('didDisappear')).toBeVisible();
- await elementByLabel('OK').atIndex(0).tap();
- });
-
- it('show multiple modals', async () => {
- await expect(elementByLabel('Modal Stack Position: 1')).toBeVisible();
- await elementById(TestIDs.MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 2')).toBeVisible();
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 1')).toBeVisible();
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementById(TestIDs.NAVIGATION_TAB)).toBeVisible();
- });
-
- it('dismiss unknown screen id', async () => {
- await expect(elementByLabel('Modal Stack Position: 1')).toBeVisible();
- await elementById(TestIDs.DISMISS_UNKNOWN_MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 1')).toBeVisible();
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementById(TestIDs.NAVIGATION_TAB)).toBeVisible();
- });
-
- it('dismiss modal by id which is not the top most', async () => {
- await expect(elementByLabel('Modal Stack Position: 1')).toBeVisible();
- await elementById(TestIDs.MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 2')).toBeVisible();
- await elementById(TestIDs.DISMISS_PREVIOUS_MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 2')).toBeVisible();
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementById(TestIDs.NAVIGATION_TAB)).toBeVisible();
- });
-
- it('dismiss all previous modals by id when they are below top presented modal', async () => {
- await expect(elementByLabel('Modal Stack Position: 1')).toBeVisible();
- await elementById(TestIDs.MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 2')).toBeVisible();
- await elementById(TestIDs.MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 3')).toBeVisible();
-
- await elementById(TestIDs.DISMISS_ALL_PREVIOUS_MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 3')).toBeVisible();
-
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementById(TestIDs.NAVIGATION_TAB)).toBeVisible();
- }
- );
-
- it('dismiss some modal by id deep in the stack', async () => {
- await expect(elementByLabel('Modal Stack Position: 1')).toBeVisible();
- await elementById(TestIDs.MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 2')).toBeVisible();
- await elementById(TestIDs.MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 3')).toBeVisible();
-
- await elementById(TestIDs.DISMISS_FIRST_MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 3')).toBeVisible();
-
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 2')).toBeVisible();
-
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementById(TestIDs.NAVIGATION_TAB)).toBeVisible();
- });
-
- it('dismissAllModals', async () => {
- await expect(elementByLabel('Modal Stack Position: 1')).toBeVisible();
- await elementById(TestIDs.MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 2')).toBeVisible();
- await elementById(TestIDs.DISMISS_ALL_MODALS_BTN).tap();
- await expect(elementById(TestIDs.NAVIGATION_TAB)).toBeVisible();
- });
-
- it('push into modal', async () => {
- await elementById(TestIDs.PUSH_BTN).tap();
- await expect(elementByLabel('Pushed Screen')).toBeVisible();
- });
-
- it(':android: push into modal and dismiss pushed screen with hardware back', async () => {
- await elementById(TestIDs.PUSH_BTN).tap();
- await elementById(TestIDs.PUSH_BTN).tap();
- Android.pressBack();
- await expect(elementByLabel('Pushed Screen')).toBeVisible();
- });
-
- it('present modal multiple times', async () => {
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await elementById(TestIDs.MODAL_BTN).tap();
- await expect(elementByLabel('Modal Stack Position: 1')).toBeVisible();
- });
-
- it('setRoot dismisses modals', async () => {
- await elementById(TestIDs.SET_ROOT).tap();
- await expect(elementById(TestIDs.MODAL_SCREEN_HEADER)).toBeNotVisible();
- await expect(elementById(TestIDs.PUSHED_SCREEN_HEADER)).toBeVisible();
- });
-
- it(':android: override hardware back button in modal with stack', async () => {
- await elementById(TestIDs.PUSH_BTN).tap();
- await elementById(TestIDs.ADD_BACK_HANDLER).tap();
-
- // Back is handled in Js
- Android.pressBack();
- await sleep(100);
- await expect(elementById(TestIDs.PUSHED_SCREEN_HEADER)).toBeVisible();
-
- // pop
- await elementById(TestIDs.REMOVE_BACK_HANDLER).tap();
- Android.pressBack();
- await sleep(100);
- await expect(elementById(TestIDs.MODAL_SCREEN_HEADER)).toBeVisible();
-
- // modal dismissed
- Android.pressBack();
- await sleep(100);
- await expect(elementById(TestIDs.NAVIGATION_TAB)).toBeVisible();
- });
- });
|