12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- const Utils = require('./Utils');
- const testIDs = require('../playground/src/testIDs');
- const { elementByLabel, elementById } = Utils;
-
- describe('Overlay', () => {
- beforeEach(async () => {
- await device.relaunchApp();
- });
-
- test('show and dismiss overlay', async () => {
- await elementById(testIDs.PUSH_OPTIONS_BUTTON).tap();
- await elementById(testIDs.SHOW_OVERLAY_BUTTON).tap();
- await expect(elementById(testIDs.DIALOG_HEADER)).toBeVisible();
- await elementById(testIDs.OK_BUTTON).tap();
- await expect(elementById(testIDs.DIALOG_HEADER)).toBeNotVisible();
- });
-
- test('overlay pass touches - true', async () => {
- await elementById(testIDs.PUSH_OPTIONS_BUTTON).tap();
- await elementById(testIDs.SHOW_TOUCH_THROUGH_OVERLAY_BUTTON).tap();
- await expect(elementById(testIDs.DIALOG_HEADER)).toBeVisible();
- await expect(elementById(testIDs.TOP_BAR_ELEMENT)).toBeVisible();
- await elementById(testIDs.HIDE_TOP_BAR_BUTTON).tap();
- await expect(elementById(testIDs.TOP_BAR_ELEMENT)).toBeNotVisible();
- });
-
- xtest('overlay pass touches - false', async () => {
- await elementById(testIDs.PUSH_OPTIONS_BUTTON).tap();
- await elementById(testIDs.SHOW_OVERLAY_BUTTON).tap();
- await expect(elementById(testIDs.DIALOG_HEADER)).toBeVisible();
- await expect(elementById(testIDs.TOP_BAR_ELEMENT)).toBeVisible();
- await elementById(testIDs.HIDE_TOP_BAR_BUTTON).tap();
- await expect(elementById(testIDs.TOP_BAR_ELEMENT)).toBeVisible();
- });
-
- test('overlay should redraw after orientation change', async () => {
- await elementById(testIDs.PUSH_OPTIONS_BUTTON).tap();
- await elementById(testIDs.SHOW_OVERLAY_BUTTON).tap();
- await expect(elementById(testIDs.DIALOG_HEADER)).toBeVisible();
- await device.setOrientation('landscape');
- await expect(elementById(testIDs.DIALOG_HEADER)).toBeVisible();
- });
-
- test('setRoot should not remove overlay', async () => {
- await elementById(testIDs.PUSH_OPTIONS_BUTTON).tap();
- await elementById(testIDs.SHOW_OVERLAY_BUTTON).tap();
- await expect(elementById(testIDs.DIALOG_HEADER)).toBeVisible();
- await elementById(testIDs.SET_ROOT_BUTTON).tap();
- await expect(elementById(testIDs.DIALOG_HEADER)).toBeVisible();
- });
- });
|