12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- const Utils = require('./Utils');
- const TestIDs = require('../playground/src/testIDs');
- const { elementByLabel, elementById } = Utils;
-
- describe('static lifecycle events', () => {
- beforeEach(async () => {
- await device.relaunchApp();
- await elementById(TestIDs.NAVIGATION_TAB).tap();
- await elementById(TestIDs.SHOW_STATIC_EVENTS_SCREEN).tap();
- await elementById(TestIDs.STATIC_EVENTS_OVERLAY_BTN).tap();
- });
-
- it('didAppear didDisappear', async () => {
- await expect(elementByLabel('componentDidAppear | EventsOverlay | Component')).toBeVisible();
- await elementById(TestIDs.PUSH_BTN).tap();
- await expect(elementByLabel('componentDidAppear | Pushed | Component')).toBeVisible();
- await expect(elementByLabel('componentDidDisappear | EventsScreen | Component')).toBeVisible();
- });
-
- it('pushing and popping screen dispatch static event', async () => {
- await expect(elementByLabel('Static Lifecycle Events Overlay')).toBeVisible();
- await expect(elementByLabel('componentDidAppear | EventsOverlay | Component')).toBeVisible();
- await elementById(TestIDs.PUSH_BTN).tap();
- await expect(elementByLabel('push')).toBeVisible();
- await elementById(TestIDs.POP_BTN).tap();
- await expect(elementByLabel('pop')).toBeVisible();
- });
-
- it('showModal and dismissModal dispatch static event', async () => {
- await elementById(TestIDs.MODAL_BTN).tap();
- await expect(elementByLabel('showModal')).toBeVisible();
- await elementById(TestIDs.DISMISS_MODAL_BTN).tap();
- await expect(elementByLabel('dismissModal')).toBeVisible();
- });
-
- it('unmounts when dismissed', async () => {
- await elementById(TestIDs.PUSH_BTN).tap();
- await expect(elementByLabel('Static Lifecycle Events Overlay')).toBeVisible();
- await elementById(TestIDs.DISMISS_BTN).tap();
- await expect(elementByLabel('Overlay Unmounted')).toBeVisible();
- await elementByLabel('OK').tap();
- });
-
- it('top bar buttons didAppear didDisappear', async () => {
- await elementById(TestIDs.PUSH_BTN).tap();
- await elementById(TestIDs.PUSH_OPTIONS_BUTTON).tap();
- await elementById(TestIDs.CLEAR_OVERLAY_EVENTS_BTN).tap();
- await elementById(TestIDs.GOTO_BUTTONS_SCREEN).tap();
- await expect(elementByLabel('componentDidAppear | CustomRoundedButton | TopBarButton')).toBeVisible();
- await elementById(TestIDs.RESET_BUTTONS).tap();
- await expect(elementByLabel('componentDidDisappear | CustomRoundedButton | TopBarButton')).toBeVisible();
- });
-
- it('top bar title didAppear didDisappear', async () => {
- await elementById(TestIDs.PUSH_BTN).tap();
- await elementById(TestIDs.PUSH_OPTIONS_BUTTON).tap();
- await elementById(TestIDs.CLEAR_OVERLAY_EVENTS_BTN).tap();
- await elementById(TestIDs.SET_REACT_TITLE_VIEW).tap();
- await expect(elementByLabel('componentDidAppear | ReactTitleView | TopBarTitle')).toBeVisible();
- await elementById(TestIDs.PUSH_BTN).tap();
- await expect(elementByLabel('componentDidDisappear | ReactTitleView | TopBarTitle')).toBeVisible();
- });
- });
|