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

const RECT_LEFT = 15;
const RECT_WIDTH = 150;
5
const RECT_HEIGHT = 100;
6 7 8 9 10 11 12

describe('nodes-info', () => {
  let page
  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
    await page.waitFor(500)
  })
H
hdx 已提交
13
  it('get-root-node-info', async () => {
H
hdx 已提交
14 15 16 17 18 19 20 21
    // 测试 class 选择器
    await getRootNode('.page')

    // 测试 id 选择器
    await getRootNode('#page')

    // 测试 标签 选择器
    // await getRootNode('page')
H
hdx 已提交
22
  })
23 24 25 26 27 28
  it('get-node-info', async () => {
    const btnGetNodeInfo = await page.$('.btn-get-node-info')

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

29 30
    const data = await page.data()

31
    // TODO 和浏览器的计算存在差异
32 33 34
    const nodeInfo = data.nodeInfoList[0]
    expect(Math.round(nodeInfo.left)).toBe(RECT_LEFT)
    expect(Math.round(nodeInfo.width)).toBe(RECT_WIDTH)
35
    expect(Math.round(nodeInfo.height)).toBe(RECT_HEIGHT)
36 37 38 39 40 41 42 43 44
  })
  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()

45 46 47 48 49 50 51 52 53 54
    const nodeInfo1 = data.nodeInfoList[0]
    expect(Math.round(nodeInfo1.left)).toBe(RECT_LEFT)
    expect(nodeInfo1.top > 220).toBe(true)
    expect(Math.round(nodeInfo1.width)).toBe(RECT_WIDTH)
    expect(Math.round(nodeInfo1.height)).toBe(RECT_HEIGHT)

    const nodeInfo2 = data.nodeInfoList[1]
    expect(nodeInfo2.left > 180).toBe(true)
    expect(nodeInfo2.top > 220).toBe(true)
    expect(Math.round(nodeInfo2.width)).toBe(RECT_WIDTH)
55
    expect(Math.round(nodeInfo2.height)).toBe(RECT_HEIGHT)
56 57 58 59 60
  })
  it('get-node-info-child', async () => {
    const child = await page.$('.node-child')
    const childData = await child.data()
    expect(childData.top > 100).toBe(true)
61
  })
62 63 64

  // #ifdef APP
  //检测onResize获取BoundingClientRect信息是否有效
65
  /* it('check_resizeRectValid', async () => {
66 67
    const resizeRectValid = await page.data('resizeRectValid')
    expect(resizeRectValid).toBe(true)
68
  }) */
69 70
  // #endif

H
hdx 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
})

async function getRootNode(selector) {
  const page = await program.currentPage()

  await page.setData({
    rootNodeInfo: null,
  })
  await page.waitFor(100)

  await page.callMethod('getRootNodeInfo', selector)
  await page.waitFor(100)

  const data = await page.data()
  expect(data.rootNodeInfo != null).toBe(true)
}