nodes-info.test.js 1.6 KB
Newer Older
1 2 3 4 5
const PAGE_PATH = '/pages/API/nodes-info/nodes-info'

const RECT_LEFT = 15;
const RECT_WIDTH = 150;
const RECT_HEIGHT = 100;
6 7 8 9 10 11 12 13 14 15 16 17 18

describe('nodes-info', () => {
  let page
  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
    await page.waitFor(500)
  })
  it('get-node-info', async () => {
    const btnGetNodeInfo = await page.$('.btn-get-node-info')

    await btnGetNodeInfo.tap()
    await page.waitFor(50)

19
    const data = await page.data()
20 21

    // TODO 和浏览器的计算存在差异
22 23
    if (!process.env.uniTestPlatformInfo.startsWith('android 6')) {
      const nodeInfo = data.nodeInfoList[0]
24 25 26
      expect(Math.round(nodeInfo.left)).toBe(RECT_LEFT)
      expect(Math.round(nodeInfo.width)).toBe(RECT_WIDTH)
      expect(Math.round(nodeInfo.height)).toBe(RECT_HEIGHT)
27 28 29 30 31 32 33 34 35 36 37 38
    }
  })
  it('get-all-node-info', async () => {
    const btnGetAllNodeInfo = await page.$('.btn-get-all-node-info')

    await btnGetAllNodeInfo.tap()
    await page.waitFor(50)

    const data = await page.data()

    if (!process.env.uniTestPlatformInfo.startsWith('android 6')) {
      const nodeInfo1 = data.nodeInfoList[0]
39
      expect(Math.round(nodeInfo1.left)).toBe(RECT_LEFT)
40
      expect(nodeInfo1.top > 220).toBe(true)
41 42
      expect(Math.round(nodeInfo1.width)).toBe(RECT_WIDTH)
      expect(Math.round(nodeInfo1.height)).toBe(RECT_HEIGHT)
43 44 45 46

      const nodeInfo2 = data.nodeInfoList[1]
      expect(nodeInfo2.left > 200).toBe(true)
      expect(nodeInfo2.top > 220).toBe(true)
47 48
      expect(Math.round(nodeInfo2.width)).toBe(RECT_WIDTH)
      expect(Math.round(nodeInfo2.height)).toBe(RECT_HEIGHT)
49 50
    }
  })
51
})