video.test.js 4.9 KB
Newer Older
1
describe('component-native-video', () => {
2 3 4 5 6 7 8
  if(process.env.uniTestPlatformInfo.startsWith('web')){
    // TODO: web 端暂不支持测试
    it('web', async () => {
      expect(1).toBe(1)
    })
    return
  }
9 10
  let page;
  beforeAll(async () => {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
11
    page = await program.reLaunch('/pages/component/video/video');
12 13 14 15 16
    if(process.env.uniTestPlatformInfo.startsWith('web')){
      await page.setData({
        muted: true
      });
    }
17
    await page.waitFor(1000);
18 19 20
  });

  it('test API', async () => {
21
    expect(await page.data('isError')).toBe(false);
22 23
    // play
    await page.callMethod('play');
24 25
    await page.waitFor(100);
    expect(await page.data('isPlaying')).toBe(true);
26 27
    // pause
    await page.callMethod('pause');
28 29
    await page.waitFor(100);
    expect(await page.data('isPause')).toBe(true);
30 31
  });

32
  it('test local source', async () => {
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
    await page.setData({
      autoTest: true,
      isError: false
    });
    await page.callMethod('downloadSource');
    await page.waitFor(5000);
    expect(await page.data('isError')).toBe(false);
    await page.setData({
      localSrc: '/static/test-video/2minute-demo.m3u8'
    });
    await page.waitFor(100);
    expect(await page.data('isError')).toBe(false);
    await page.setData({
      autoTest: false
    });
  });

  it('test event play pause', async () => {
    await page.setData({
      autoTest: true
    });
    await page.callMethod('play');
55
    await page.waitFor(100);
56 57 58 59 60
    expect(await page.data('eventPlay')).toEqual({
      tagName: 'VIDEO',
      type: 'play'
    });
    await page.callMethod('pause');
61
    await page.waitFor(100);
62 63 64 65 66 67 68 69 70 71 72 73
    expect(await page.data('eventPause')).toEqual({
      tagName: 'VIDEO',
      type: 'pause'
    });
    await page.callMethod('play');
  });

  it('test event waiting progress timeupdate', async () => {
    await page.setData({
      pos: 10
    });
    await page.callMethod('seek');
74
    await page.waitFor(100);
75 76 77 78
    expect(await page.data('eventWaiting')).toEqual({
      tagName: 'VIDEO',
      type: 'waiting'
    });
79
    await page.waitFor(200);
80 81 82
    expect(await page.data('eventProgress')).toEqual({
      tagName: 'VIDEO',
      type: 'progress',
83
      isBufferedValid: true
84
    });
85 86 87 88 89 90 91 92 93 94 95
    const infos = process.env.uniTestPlatformInfo.split(' ');
    const version = parseInt(infos[infos.length - 1]);
    if (process.env.uniTestPlatformInfo.startsWith('android') && version > 5) {
      await page.waitFor(200);
      expect(await page.data('eventTimeupdate')).toEqual({
        tagName: 'VIDEO',
        type: 'timeupdate',
        currentTime: 10,
        duration: 121
      });
    }
96 97
  });

98
  it('test event fullscreenchange controlstoggle fullscreenclick', async () => {
99
    if (process.env.uniTestPlatformInfo.toLowerCase().startsWith('ios')) {
100 101
      return;
    }
102
    await page.callMethod('requestFullScreen');
103
    await page.waitFor(500);
104 105 106 107 108 109 110
    expect(await page.data('eventFullscreenchange')).toEqual({
      tagName: 'VIDEO',
      type: 'fullscreenchange',
      fullScreen: true,
      direction: 'horizontal'
    });
    if (process.env.uniTestPlatformInfo.startsWith('android')) {
111 112
      await page.waitFor(5000);
      await program.adbCommand('input tap 10 10');
113 114 115 116
      await page.waitFor(100);
      expect(await page.data('eventControlstoggle')).toEqual({
        tagName: 'VIDEO',
        type: 'controlstoggle',
117
        show: true
118
      });
119 120 121 122 123 124
      const res = await program.adbCommand('wm size');
      const width = res.data.split(' ').at(-1).split('x')[0];
      const height = res.data.split(' ').at(-1).split('x')[1];
      const res2 = await program.adbCommand('wm density');
      const scale = res2.data.split(' ').at(-1) / 160;
      // android模拟器全屏时会弹出系统提示框,影响测试screenX、screenY
125 126 127
      expect(await page.data('eventFullscreenclick')).toEqual({
        tagName: 'VIDEO',
        type: 'fullscreenclick',
128 129
        screenX: parseInt(10 / scale),
        screenY: parseInt(10 / scale),
130 131 132 133 134 135 136 137 138 139 140 141
        screenWidth: parseInt(height / scale),
        screenHeight: parseInt(width / scale)
      });
    }
    await page.callMethod('exitFullScreen');
  });

  it('test event ended', async () => {
    await page.setData({
      pos: 120
    });
    await page.callMethod('seek');
142
    await page.waitFor(2500);
143 144 145 146 147 148 149 150 151 152 153
    expect(await page.data('eventEnded')).toEqual({
      tagName: 'VIDEO',
      type: 'ended'
    });
  });

  it('test event error', async () => {
    const oldSrc = await page.data('src');
    await page.setData({
      src: 'invalid url'
    });
154
    await page.waitFor(300);
155 156 157 158 159 160 161 162 163
    expect(await page.data('eventError')).toEqual({
      tagName: 'VIDEO',
      type: 'error',
      errCode: 300001
    });
    await page.setData({
      autoTest: false,
      src: oldSrc
    });
164 165
  });

166
  it('test format', async () => {
167
    page = await program.navigateTo('/pages/component/video/video-format');
168 169 170 171
    await page.waitFor(1000);
    expect(await page.data('isError')).toBe(false);
  });
});