get-app-base-info.test.js 1.1 KB
Newer Older
1 2 3 4 5 6 7 8
const PAGE_PATH = '/pages/API/get-app-base-info/get-app-base-info'

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

  let page;
  let res;
  const stringProperties = [
    'appId', 'appName', 'appVersion', 'appVersionCode', 'appLanguage',
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
9
    'language', 'uniCompilerVersion', 'uniPlatform', 'uniRuntimeVersion',
10 11
  ]
  const numberProperties = [
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
12
    'uniCompilerVersionCode', 'uniRuntimeVersionCode'
雪洛's avatar
雪洛 已提交
13 14 15 16
  ]
  if (process.env.uniTestPlatformInfo.indexOf('web') === -1) {
    stringProperties.push('version')
  }
17 18 19 20 21 22 23
  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
    await page.waitFor(600);
    res = await uni.getAppBaseInfo();
  });
  it('Check properties', async () => {
    for (const key in res) {
24 25 26 27
      const value = res[key];
      console.log("key :",key , "value :", value);
      if (stringProperties.indexOf(key) != -1) {
        expect(value).not.toBeNull();
28 29
        expect(value).not.toBe("");
      }
30 31
      if (numberProperties.indexOf(key) != -1) {
        expect(value).not.toBeNull();
32 33 34 35 36
        expect(value).toBeGreaterThanOrEqual(3.90);
      }
    }
  });
});