navbar-lite.test.js 2.0 KB
Newer Older
1
const CURRENT_PAGE_PATH =
2
  "/pages/template/navbar-lite/navbar-lite";
3 4 5 6 7 8 9 10

describe("setCustomNavigationBarColor", () => {
  let page;
  let originLifeCycleNum;
  const isAndroid = process.env.UNI_OS_NAME === "android";
  const adbScreenShotArea = {
    x: 880,
    y: 0,
11
    width: 60,
12 13 14 15 16 17 18 19 20 21
    height: 60
  };
  beforeAll(async () => {
    page = await program.navigateTo(CURRENT_PAGE_PATH);
    if (process.env.uniTestPlatformInfo.startsWith('android 6')) {
      adbScreenShotArea.x = 535
      adbScreenShotArea.width = 90
      adbScreenShotArea.height = 50
    } else if (process.env.uniTestPlatformInfo.startsWith('android 12')) {
      adbScreenShotArea.x = 1160
22
      adbScreenShotArea.width = 70
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
      adbScreenShotArea.height = 80
    }
    await page.waitFor(1000);
    originLifeCycleNum = await page.callMethod("getLifeCycleNum");
  });

  afterAll(async () => {
    await page.callMethod("setLifeCycleNum", originLifeCycleNum);
    const lifeCycleNum = await page.callMethod("getLifeCycleNum");
    expect(lifeCycleNum).toBe(originLifeCycleNum);
  });

  it("setNavigationBarColor2", async () => {
    await page.callMethod("setNavigationBarColor2");
    await page.waitFor(1000);
    if (isAndroid) {
      const image = await program.screenshot({
        adb: true,
        area: adbScreenShotArea,
      });
      expect(image).toMatchImageSnapshot();
    }
    const lifeCycleNum = await page.callMethod("getLifeCycleNum");
    expect(lifeCycleNum - originLifeCycleNum).toBe(2);
  });

  it("setNavigationBarColor1", async () => {
    await page.callMethod("setNavigationBarColor1");
    await page.waitFor(1000);
    if (isAndroid) {
      const image = await program.screenshot({
        adb: true,
        area: adbScreenShotArea,
      });
      expect(image).toMatchImageSnapshot();
    }
    const lifeCycleNum = await page.callMethod("getLifeCycleNum");
    expect(lifeCycleNum - originLifeCycleNum).toBe(4);
  });
62
});