touch-events-bubbles.test.js 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
const PAGE_PATH = '/pages/component/global-events/touch-events-bubbles'

describe('touch-events-test', () => {

  // 先屏蔽 android 及 web 平台
  if (process.env.uniTestPlatformInfo.startsWith('android') || process.env.uniTestPlatformInfo.startsWith('web')) {
    it('other platform', () => {
      expect(1).toBe(1)
    })
    return
  }

  if (process.env.UNI_TEST_DEVICES_DIRECTION == 'landscape') {
    it('跳过横屏模式', () => {
      expect(1).toBe(1)
    })
    return
  }

  let page
  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
    await page.waitFor(500);
  })


  it('touch-event-bubbles-test1', async () => {

    let iconRect = await page.data('iconRect')
    let x = iconRect.x + iconRect.width / 2.0
31
    let y = iconRect.y + 25
32 33 34 35

    // 滑动事件
    await program.swipe({
      startPoint: {x: x, y: y},
36
      endPoint: {x: x,y: y+15},
37 38 39 40 41 42 43 44 45 46 47 48 49
      duration: 200
    })

    await page.waitFor(1500);
    await page.callMethod('isPassTest1')
    const ret = await page.data('ret1')
    expect(ret).toBe(true)
  })

  it('touch-event-bubbles-test2', async () => {

    let viewEleRect = await page.data('viewEleRect')
    let x = viewEleRect.x + viewEleRect.width / 2.0
50
    let y = viewEleRect.y + 25
51 52 53 54

    // 滑动事件
    await program.swipe({
      startPoint: {x: x, y: y},
55
      endPoint: {x: x,y: y+15},
56 57 58 59 60 61 62 63 64 65
      duration: 200
    })

    await page.waitFor(1500);
    await page.callMethod('isPassTest2')
    const ret = await page.data('ret2')
    expect(ret).toBe(true)
  })

})