download-file.test.js 2.5 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

  it('Check Special characters Url download file', async () => {
    res = await page.callMethod('jest_special_characters_download')
    await page.waitFor(2000);
    res = await page.data('jest_result');
    expect(res).toBe(true)
  });
31 32 33 34 35 36 37 38 39

  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);
    });

40
    // 15以下的模拟器所对应的xcode不能编译自定义插件,大于15是因为某台设备,会用xcode14.1跑15.5的设备
41 42 43
    let version = process.env.uniTestPlatformInfo
    let split = version.split(" ")
    version = parseInt(split[split.length - 1])
44
    if(!process.env.uniTestPlatformInfo.toLocaleLowerCase().startsWith('ios') || version > 15) {
45 46 47 48 49 50 51 52
      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)
      })
    }
  }
53

雪洛's avatar
雪洛 已提交
54 55

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

  it('Check Set Cookie', async () => {
    res = await page.callMethod('jest_set_cookie')
70
    await page.waitFor(2000);
雪洛's avatar
雪洛 已提交
71 72 73 74 75
    res = await page.data('jest_result');
    expect(res).toBe(true)
  });
  it('Check Delete Cookie', async () => {
    res = await page.callMethod('jest_delete_cookie')
76
    await page.waitFor(2000);
雪洛's avatar
雪洛 已提交
77 78
    res = await page.data('jest_result');
    expect(res).toBe(true)
79
  });
80
});