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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
    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');
    await page.waitFor(async () => {
      return await page.data('eventPlay');
    });
    expect(await page.data('eventPlay')).toEqual({
      tagName: 'VIDEO',
      type: 'play'
    });
    await page.callMethod('pause');
    await page.waitFor(async () => {
      return await page.data('eventPause');
    });
    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');
    await page.waitFor(async () => {
      return await page.data('eventWaiting');
    });
    expect(await page.data('eventWaiting')).toEqual({
      tagName: 'VIDEO',
      type: 'waiting'
    });
    await page.waitFor(async () => {
      return await page.data('eventProgress');
    });
    expect(await page.data('eventProgress')).toEqual({
      tagName: 'VIDEO',
      type: 'progress',
      buffered: 100
    });
    await page.waitFor(250);
    expect(await page.data('eventTimeupdate')).toEqual({
      tagName: 'VIDEO',
      type: 'timeupdate',
      currentTime: 10,
      duration: 121
    });
  });

  it('test event fullscreenchange fullscreenclick controlstoggle', async () => {
    await page.callMethod('requestFullScreen');
    await page.waitFor(async () => {
      return await page.data('eventFullscreenchange');
    });
    expect(await page.data('eventFullscreenchange')).toEqual({
      tagName: 'VIDEO',
      type: 'fullscreenchange',
      fullScreen: true,
      direction: 'horizontal'
    });
    if (process.env.uniTestPlatformInfo.startsWith('android')) {
      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;
      await page.waitFor(100);
      await program.adbCommand(`input tap ${parseInt(height / 2)} ${parseInt(width / 2)}`);
      await page.waitFor(100);
      expect(await page.data('eventControlstoggle')).toEqual({
        tagName: 'VIDEO',
        type: 'controlstoggle',
        show: false
      });
      expect(await page.data('eventFullscreenclick')).toEqual({
        tagName: 'VIDEO',
        type: 'fullscreenclick',
        screenX: parseInt(height / 2 / scale),
        screenY: parseInt(width / 2 / scale),
        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');
    await page.waitFor(async () => {
      return await page.data('eventEnded');
    });
    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'
    });
    await page.waitFor(async () => {
      return await page.data('eventError');
    });
    expect(await page.data('eventError')).toEqual({
      tagName: 'VIDEO',
      type: 'error',
      errCode: 300001
    });
    await page.setData({
      autoTest: false,
      src: oldSrc
    });
170 171
  });

172
  it('test format', async () => {
173
    page = await program.navigateTo('/pages/component/video/video-format');
174 175 176 177
    await page.waitFor(1000);
    expect(await page.data('isError')).toBe(false);
  });
});