9433cfb9创建于 2025年12月31日历史提交
jest.setTimeout(50000)

const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase()
const isWeb = platformInfo.startsWith('web')
const isAndroid = platformInfo.startsWith('android')
const isIos = platformInfo.startsWith('ios')
const isMP = platformInfo.startsWith('mp')
const isHarmony = platformInfo.startsWith('harmony')
const isApp = isAndroid || isIos || isHarmony
const isAppWebView = process.env.UNI_AUTOMATOR_APP_WEBVIEW == 'true'

const FIRST_PAGE_PATH = '/pages/API/dialog-page/dialog-page'
const NEXT_PAGE_PATH = '/pages/API/dialog-page/next-page'

describe('dialog page', () => {
  if (isAppWebView || isMP) {
    it('not support', () => {
      expect(1).toBe(1)
    })
    return
  }

  let deviceShotOptions = {}
  let page;
  let initLifeCycleNum;
  let lifecycleNum;
  beforeAll(async () => {
    const windowInfo = await program.callUniMethod('getWindowInfo');
    let topSafeArea = windowInfo.safeAreaInsets.top;
    if (isAppWebView) {
      if (isIos) {
        topSafeArea = 59
      } else if (isAndroid) {
        topSafeArea = 24
        if (platformInfo.startsWith('android 5')) {
          topSafeArea = 25
        } else if (platformInfo.startsWith('android 11')) {
          topSafeArea = 52
        } else if (platformInfo.startsWith('android 13') || platformInfo.startsWith('android 15')) {
          topSafeArea = 49
        }
      } else if (isHarmony) {
        // mate 60
        // topSafeArea = 33
        // mate 60 pro
        topSafeArea = 38
      }
    }
    deviceShotOptions = {
      deviceShot: true,
      area: {
        x: 0,
        y: topSafeArea + 44,
      },
    };

    page = await program.reLaunch(FIRST_PAGE_PATH)
    await page.waitFor('view');
    initLifeCycleNum = await page.callMethod('getLifeCycleNum');
    await page.callMethod('setLifeCycleNum', 0)
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(0)
  });

  it('page pageBody safeAreaInsets', async () => {
    const pageBodyWidth = await page.$('#page-body-width')
    expect(parseInt(await pageBodyWidth.text())).toBeGreaterThan(0)
    const pageBodyHeight = await page.$('#page-body-height')
    expect(parseInt(await pageBodyHeight.text())).toBeGreaterThan(0)

    const pageBodyLeft = await page.$('#page-body-left')
    const pageBodyRight = await page.$('#page-body-right')
    const expectRightValue = parseInt(await pageBodyLeft.text()) + parseInt(await pageBodyWidth.text())
    expect(parseInt(await pageBodyRight.text())).toBe(expectRightValue)

    const pageBodyTop = await page.$('#page-body-top')
    const pageBodyBottom = await page.$('#page-body-bottom')
    const expectBottomValue = parseInt(await pageBodyTop.text()) + parseInt(await pageBodyHeight.text())
    expect(parseInt(await pageBodyBottom.text())).toBe(expectBottomValue)

    pageSafeAreaInsetsTop = await page.$('#page-safe-area-insets-top')
    if(isWeb){
      expect(await pageSafeAreaInsetsTop.text()).toBe('44')
    } else {
      expect(await pageSafeAreaInsetsTop.text()).toBe('0')
    }
    pageSafeAreaInsetsBottom = await page.$('#page-safe-area-insets-bottom')
    if(isWeb){
      expect(await pageSafeAreaInsetsBottom.text()).toBe('0')
    }
    if(isIos || isAndroid){
      expect(parseInt(await pageSafeAreaInsetsBottom.text())).toBeGreaterThanOrEqual(0)
    }
    pageSafeAreaInsetsLeft = await page.$('#page-safe-area-insets-left')
    expect(await pageSafeAreaInsetsLeft.text()).toBe('0')
    pageSafeAreaInsetsRight = await page.$('#page-safe-area-insets-right')
    expect(await pageSafeAreaInsetsRight.text()).toBe('0')

    const pageWidth = await page.$('#page-width')
    expect(parseInt(await pageWidth.text())).toBeGreaterThan(0)
    const pageHeight = await page.$('#page-height')
    expect(parseInt(await pageHeight.text())).toBeGreaterThan(0)
    const pageStatusBarHeight = await page.$('#page-statusBarHeight')
    expect(parseInt(await pageStatusBarHeight.text())).toBeGreaterThanOrEqual(0)
  })

  it('dialogPage pageBody safeAreaInsets', async () => {
    await page.callMethod('openDialogCheckMoreAttribute')
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    const image = await program.screenshot(deviceShotOptions);
    expect(image).toSaveImageSnapshot();
    await page.callMethod('closeDialog');
    lifecycleNum = await page.callMethod('getLifeCycleNum');
    expect(lifecycleNum).toBe(2);
    await page.callMethod('setLifeCycleNum', 0);
  })

  // for issue 19676
  // ios 增加该测试,open multiple dialog page 后 dialogPages[0] 是 dialog2, dialogPages[1] 是 dialog1,自动化测试可以复现,同样流程运行无法复现,暂时规避
  if (!isIos) {
    it('open dialog1-1', async () => {
      await page.callMethod('openDialog11');
      await page.waitFor(1000)
      if (isWeb) {
        await page.waitFor(2000)
      }
      const image = await program.screenshot(deviceShotOptions);
      expect(image).toSaveImageSnapshot();
      lifecycleNum = await page.callMethod('getLifeCycleNum')
      // dialog1-1 onReady +2
      expect(lifecycleNum).toBe(2)

      await page.callMethod('closeDialog')
      await page.waitFor(1000)
      lifecycleNum = await page.callMethod('getLifeCycleNum')
      // closeDialog callback +2 dialog1-1 onUnload -5
      expect(lifecycleNum).toBe(-1)
      await page.callMethod('setLifeCycleNum', 0)
    });
  }

  it('open dialog1', async () => {
    await page.callMethod('openDialog1');
    // 无法通过获取 dom 元素来判断是否打开了 dialogPage
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    const image = await program.screenshot(deviceShotOptions);
    expect(image).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    // 不应触发父页面的生命周期,应该触发:
    // 1. openDialogPage success & complete callback
    // 2. dialog page 生命周期
    expect(lifecycleNum).toBe(7)
    await page.callMethod('setLifeCycleNum', 0)

    const dialogPageRoute = await page.callMethod('getDialogPageRoute')
    expect(dialogPageRoute).toBe('pages/API/dialog-page/dialog-1')
  });

  it('check dialogPage methods', async () => {
    expect(await page.callMethod('dialogPageCheckGetDialogPages')).toBe(true)
    let dialogPageStyle = await page.callMethod('dialogPageGetPageStyle')
    expect(dialogPageStyle.backgroundColorContent).not.toBe('red')
    await page.callMethod('dialogPageSetPageStyle')
    dialogPageStyle = await page.callMethod('dialogPageGetPageStyle')
    expect(dialogPageStyle.backgroundColorContent).toBe('red')
    expect(await page.callMethod('dialogPageCheckGetElementById')).toBe(true)
    expect(await page.callMethod('dialogCheckGetAndroidView')).toBe(isAndroid)
    expect(await page.callMethod('dialogCheckGetIOSView')).toBe(false)
    expect(await page.callMethod('dialogCheckGetHTMLElement')).toBe(isWeb)
  })

  it('closeDialogPage', async () => {
    await page.callMethod('closeDialog');
    const image = await program.screenshot(deviceShotOptions);
    expect(image).toSaveImageSnapshot();
    // closeDialogPage success & complete callback 应被触发
    // dialogPage onUnload 应被触发
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(-3)
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('openDialog with wrong path', async () => {
    await page.callMethod('openDialog1WrongPath')
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(-3)
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('navigateTo nextPage & open Dialog', async () => {
    await page.callMethod('goNextPageOpenDialog1')
    await page.waitFor(2500)
    if (isWeb) {
      await page.waitFor(3000)
    }
    page = await program.currentPage()
    expect(page.path).toBe(NEXT_PAGE_PATH.substring(1))
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    const image = await program.screenshot(deviceShotOptions);
    expect(image).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(-4)
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('dialog1 navigateBack', async () => {
    await program.navigateBack()
    page = await program.currentPage()
    // dialogPage onBackPress 返回 true, 应可以拦截 navigateBack
    expect(page.path).toBe(NEXT_PAGE_PATH.substring(1))
    const image = await program.screenshot(deviceShotOptions);
    expect(image).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    // onBackPress 生命周期应该被触发
    expect(lifecycleNum).toBe(1)
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('open dialog2', async () => {
    await page.callMethod('openDialog2')
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    // 应触发前一个 dialogPage 的 onHide
    expect(lifecycleNum).toBe(4)
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('closeDialogPage', async () => {
    await page.callMethod('closeDialog')
    await page.waitFor(1000)
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    // 应触发 success & complete 回调
    // 应触发 dialogPage 的 unload,下层的 dialogPage 会先 show 再 unload
    expect(lifecycleNum).toBe(-7)

    const image = await program.screenshot(deviceShotOptions);
    expect(image).toSaveImageSnapshot();
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('open multiple dialog page', async () => {
    await page.callMethod('openDialog1')
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    const image1 = await program.screenshot(deviceShotOptions);
    expect(image1).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(4)

    await page.callMethod('openDialog2')
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    const image2 = await program.screenshot(deviceShotOptions);
    expect(image2).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(8)
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('openDialogPage to home page', async () => {
    // 本测试例中是在 FIRST_PAGE_PATH 中打开
    await page.callMethod('openDialogPage1ToHomePage')
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(4)
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('dialog2 navigateBack', async () => {
    await program.navigateBack()
    page = await program.currentPage()
    expect(page.path).toBe(FIRST_PAGE_PATH.substring(1))
    const image = await program.screenshot(deviceShotOptions);
    expect(image).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    // dialogPage2 onBackPress +1 dialogPage1 show +1 dialogPage unload -5*2 firstPage show +10
    expect(lifecycleNum).toBe(2)
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('close specified dialogPage', async () => {
    await page.callMethod('openDialog2')
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    const image1 = await program.screenshot(deviceShotOptions);
    expect(image1).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(4)

    await page.callMethod('openDialog1')
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    const image2 = await program.screenshot(deviceShotOptions);
    expect(image2).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(10)

    await page.callMethod('closeSpecifiedDialog', 0)
    await page.waitFor(1000)
    const image3 = await program.screenshot(deviceShotOptions);
    expect(image3).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(7)

    await page.callMethod('closeSpecifiedDialog', 1)
    await page.waitFor(1000)
    const image4 = await program.screenshot(deviceShotOptions);
    expect(image4).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(5)

    await page.callMethod('closeSpecifiedDialog', 0)
    await page.waitFor(1000)
    const image5 = await program.screenshot(deviceShotOptions);
    expect(image5).toSaveImageSnapshot();
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(2)
    await page.callMethod('setLifeCycleNum', 0)
  })

  it('check triggerParentHide', async () => {
    // no triggerParentHide should not trigger parent hide
    await page.callMethod('openDialog4')
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    // dialog4 show +1
    expect(await page.callMethod('getLifeCycleNum')).toBe(1)
    await page.callMethod('closeDialog')
    await page.waitFor(200)
    // dialog4 unload -5 closeDialog callback +2
    expect(await page.callMethod('getLifeCycleNum')).toBe(-2)

    // triggerParentHide should trigger parent hide
    await page.callMethod('openDialogWithTriggerParentHide')
    await page.waitFor(1000)
    if (isWeb) {
      await page.waitFor(2000)
    }
    // openDialog callback +2 dialog4 show +1 parent hide -10
    expect(await page.callMethod('getLifeCycleNum')).toBe(-9)
    await page.callMethod('closeDialog')
    await page.waitFor(200)
    // dialog4 unload -5 parent show +10 closeDialog callback +2
    expect(await page.callMethod('getLifeCycleNum')).toBe(-2)

    // TODO: 临时规避导致 web 端崩溃逻辑,运行时相同逻辑正常
    if(!isWeb){
      // triggerParentHide should trigger parent hide
      await page.callMethod('openDialogWithTriggerParentHide')
      await page.waitFor(1000)
      if (isWeb) {
        await page.waitFor(2000)
      }
      // openDialog callback +2 dialog4 show +1 parent hide -10
      expect(await page.callMethod('getLifeCycleNum')).toBe(-9)

      // second triggerParentHide should not trigger parent hide
      await page.callMethod('openDialogWithTriggerParentHide')
      await page.waitFor(1000)
      if (isWeb) {
        await page.waitFor(2000)
      }
      // openDialog callback +2 dialog4 show +1
      expect(await page.callMethod('getLifeCycleNum')).toBe(-6)

      await page.callMethod('closeSpecifiedDialog', 1)
      await page.waitFor(200)
      // close not last triggerParentHide should not trigger parent show
      // close callback +2 dialog4 unload -5 dialog4 show +1
      expect(await page.callMethod('getLifeCycleNum')).toBe(-8)

      await page.callMethod('closeSpecifiedDialog', 0)
      await page.waitFor(200)
      // close last triggerParentHide should trigger parent show
      // close callback +2 dialog4 unload -5 parent show +10
      expect(await page.callMethod('getLifeCycleNum')).toBe(-1)


      // no triggerParentHide should not trigger parent hide
      await page.callMethod('openDialog4')
      await page.waitFor(1000)
      if (isWeb) {
        await page.waitFor(2000)
      }
      // dialog4 show +1
      expect(await page.callMethod('getLifeCycleNum')).toBe(0)
      // triggerParentHide should trigger parent hide
      await page.callMethod('openDialogWithTriggerParentHide')
      await page.waitFor(1000)
      if (isWeb) {
        await page.waitFor(2000)
      }
      // openDialog callback +2 dialog4 show +1 parent hide -10
      expect(await page.callMethod('getLifeCycleNum')).toBe(-7)

      // second triggerParentHide should not trigger parent hide
      await page.callMethod('openDialogWithTriggerParentHide')
      await page.waitFor(1000)
      if (isWeb) {
        await page.waitFor(2000)
      }
      // openDialog callback +2 dialog4 show +1
      expect(await page.callMethod('getLifeCycleNum')).toBe(-4)
      // close middle triggerParentHide dialogPage
      await page.callMethod('closeSpecifiedDialog', 1)
      await page.waitFor(200)
      // close callback +2 dialog4 unload -5
      expect(await page.callMethod('getLifeCycleNum')).toBe(-7)
      // close last triggerParentHide dialogPage shoud trigger parent show
      await page.callMethod('closeSpecifiedDialog', 1)
      await page.waitFor(200)
      // close callback +2 dialog4 unload -5 dialog4 show +1 parent show +10
      expect(await page.callMethod('getLifeCycleNum')).toBe(1)
      await page.callMethod('closeDialog')
      await page.waitFor(200)
      // close callback +2 dialog4 unload -5
      expect(await page.callMethod('getLifeCycleNum')).toBe(-2)
    }
  })

  if (isApp) {
    it('after closeDialogPage reset statusBar color', async () => {
      const screenShotArea = {
        x: 342,
        y:18,
        width: 40,
        height: 20
      };
      if (isIos) {
        screenShotArea.x = 310
        screenShotArea.y = 20
        screenShotArea.width = 40
        screenShotArea.height = 20
      } else if (platformInfo.startsWith('android 6')) {
        screenShotArea.x = 204
        screenShotArea.width = 34
        screenShotArea.height = 16
      } else if (platformInfo.startsWith('android 8')) {
        screenShotArea.y = 4
        screenShotArea.x = 336
      } else if (platformInfo.startsWith('android 12')) {
        screenShotArea.x = 336
        screenShotArea.y = 3
        screenShotArea.width = 50
        screenShotArea.height = 20
      } else if (isHarmony) {
        screenShotArea.x = 295
        screenShotArea.y = 14
        screenShotArea.width = 40
        screenShotArea.height = 20
      }
      const imageForParentInit = await program.screenshot({
        deviceShot: true,
        area: screenShotArea,
      });
      expect(imageForParentInit).toSaveImageSnapshot();

      await page.callMethod('openDialog4')
      await page.waitFor(1000)
      const imageForDialog4_1 = await program.screenshot({
        deviceShot: true,
        area: screenShotArea,
      });
      expect(imageForDialog4_1).toSaveImageSnapshot();

      await page.callMethod('openDialog3')
      await page.waitFor(1000)
      const imageForDialog3 = await program.screenshot({
        deviceShot: true,
        area: screenShotArea,
      });
      expect(imageForDialog3).toSaveImageSnapshot();

      await page.callMethod('closeSpecifiedDialog', 1)
      await page.waitFor(1000)

      const imageForDialog4_2 = await program.screenshot({
        deviceShot: true,
        area: screenShotArea,
      });
      expect(imageForDialog4_2).toSaveImageSnapshot();

      await page.callMethod('closeSpecifiedDialog', 0)
      await page.waitFor(1000)

      const imageForParentEnd = await program.screenshot({
        deviceShot: true,
        area: screenShotArea,
      });
      expect(imageForParentEnd).toSaveImageSnapshot();
    })
  }
  it('input-hold-keyboard in dialog', async () => {
    await page.callMethod('openDialogWithInput')
    await page.waitFor(2000);
    await page.callMethod('jest_getTapPoint')
    const point_x = await page.data('jest_click_x');
    const point_y = await page.data('jest_click_y');
    await program.tap({
      x: Math.round(point_x),
      y: Math.round(point_y)
    })

    await page.waitFor(1000);
    const image = await program.screenshot(deviceShotOptions)
    expect(image).toSaveImageSnapshot()
    await page.waitFor(2000);
    await page.callMethod('closeDialogSimple')
  })

  if (isAndroid) {
    it('dialogPage hideStatusBar hideBottomNavigationIndicator', async () => {
        await page.callMethod('openDialog2Simple');
        await page.waitFor(1000);
        await page.callMethod('setPageStyleForTest', {
          hideStatusBar: true,
          hideBottomNavigationIndicator: true
        });
        await page.waitFor(2000);
        const image = await program.screenshot({
          deviceShot: true
        });
        expect(image).toSaveImageSnapshot();
        await page.waitFor(2000);
        await page.callMethod('closeDialogSimple');
        await page.waitFor(1000);
        await page.callMethod('setPageStyleForTest2', {
          hideStatusBar: true,
          hideBottomNavigationIndicator: true
        });
        await page.waitFor(1000);
        await page.callMethod('openDialog2Simple');
        await page.waitFor(1000);
        await page.callMethod('closeDialogSimple');
        await page.waitFor(1000);
        const image2 = await program.screenshot({
          deviceShot: true
        });
        expect(image2).toSaveImageSnapshot();
    });

    it('dialogPage androidThreeButtonNavigationTranslucent', async () => {
        await page.callMethod('openDialog2Simple');
        await page.waitFor(1000);
        await page.callMethod('setPageStyleForTest', {
          androidThreeButtonNavigationTranslucent: false
        });
        await page.waitFor(2000);
        const image = await program.screenshot({
          deviceShot: true
        });
        expect(image).toSaveImageSnapshot();
        await page.waitFor(2000);
        await page.callMethod('closeDialogSimple');
    });
  }

  if ('open dialogPage with relative path', async () => {
    await page.callMethod('closeDialog')
    await page.waitFor(1000);
    await page.callMethod('setLifeCycleNum', 0)
    await page.callMethod('openDialogWithRelativePath');
    await page.waitFor(1000);
    if (isWeb) {
      await page.waitFor(2000);
    }
    lifecycleNum = await page.callMethod('getLifeCycleNum')
    expect(lifecycleNum).toBe(6)
    await page.callMethod('setLifeCycleNum', 0)
  })

  afterAll(async () => {
    await page.callMethod('setLifeCycleNum', initLifeCycleNum)
  });
});