download-file.test.js 2.2 KB
Newer Older
1 2 3 4
const PAGE_PATH = '/pages/API/download-file/download-file'

describe('ExtApi-DownloadFile', () => {

雪洛's avatar
雪洛 已提交
5
  let page;
6 7 8
  let res;
  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
雪洛's avatar
雪洛 已提交
9 10
    await page.waitFor(600);
    await page.callMethod('jest_downloadFile');
11
    await page.waitFor(2000);
雪洛's avatar
雪洛 已提交
12 13 14 15 16 17 18
    res = await page.data('jest_result');
  });

  beforeEach(async () => {
    await page.setData({
      jest_result: false
    })
19 20 21
  });

  it('Check ', async () => {
雪洛's avatar
雪洛 已提交
22
    expect(res).toBe(true);
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
  });


  if (!process.env.uniTestPlatformInfo.startsWith('web')) {
    it('Check uni.env', async () => {
      await page.callMethod('jest_downloadFile_with_uni_env');
      await page.waitFor(2000);
      res = await page.data('jest_result');
      expect(res).toBe(true);
    });

    // 15以下的模拟器所对应的xcode不能编译自定义插件
    let version = process.env.uniTestPlatformInfo
    let split = version.split(" ")
    version = parseInt(split[split.length - 1])
    if(!process.env.uniTestPlatformInfo.toLocaleLowerCase().startsWith('ios') || version > 14) {
      it('Check Download File In UTS Module', async () => {
        res = await page.callMethod('jest_uts_module_invoked')
        await page.waitFor(2000);
        res = await page.data('jest_result');
        expect(res).toBe(true)
      })
    }
  }
47

雪洛's avatar
雪洛 已提交
48 49

  let shouldTestCookie = false
50
  if (process.env.uniTestPlatformInfo.startsWith('android') && !process.env.UNI_AUTOMATOR_APP_WEBVIEW) {
雪洛's avatar
雪洛 已提交
51
    let version = process.env.uniTestPlatformInfo
52
    version = parseInt(version.split(" ")[1])
雪洛's avatar
雪洛 已提交
53
    shouldTestCookie = version > 9
54
  } else if (process.env.uniTestPlatformInfo.startsWith('web')) {
雪洛's avatar
雪洛 已提交
55 56 57
    // TODO 测试网址调整后放开此测试
    shouldTestCookie = false
  }
58 59 60
  if (!shouldTestCookie) {
    return
  }
雪洛's avatar
雪洛 已提交
61 62 63

  it('Check Set Cookie', async () => {
    res = await page.callMethod('jest_set_cookie')
64
    await page.waitFor(2000);
雪洛's avatar
雪洛 已提交
65 66 67 68 69
    res = await page.data('jest_result');
    expect(res).toBe(true)
  });
  it('Check Delete Cookie', async () => {
    res = await page.callMethod('jest_delete_cookie')
70
    await page.waitFor(2000);
雪洛's avatar
雪洛 已提交
71 72
    res = await page.data('jest_result');
    expect(res).toBe(true)
73
  });
74
});