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

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

  let page;
  let res;
  const stringProperties = [
    'appId', 'appLanguage', 'appName', 'appVersion', 'appVersionCode',
    'brand', 'deviceId', 'deviceBrand', 'deviceModel', 'deviceType', 'language',
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
10
    'model', 'osName', 'osVersion', 'osLanguage', 'platform', 'system', 'ua', 'uniCompilerVersion',
11 12 13 14 15 16
    'uniPlatform', 'uniRuntimeVersion', 'romName', 'romVersion',
  ]
  const numberProperties = [
    'osAndroidAPILevel', 'devicePixelRatio', 'pixelRatio', 'screenWidth', 'screenHeight', 'statusBarHeight',
    'windowWidth',
    'windowHeight', 'windowTop', 'windowBottom', 'screenTop',
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
17
    'uniCompilerVersionCode', 'uniRuntimeVersionCode'
18 19 20 21 22 23 24 25 26 27
  ]
  const booleanProperties = [
    'isUniAppX'
  ]
  const requiredProperties = [
    'uniCompilerVersion',
    'uniCompilerVersionCode',
    'uniRuntimeVersion',
    'uniRuntimeVersionCode',
    'isUniAppX'
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
28
  ]
29 30 31 32 33 34 35 36 37

  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
    await page.waitFor(600);
    res = await page.callMethod('jest_getSystemInfo')
  });
  it('Check GetSystemInfoSync', async () => {
    for (const key in res) {
      const value = res[key];
38
      console.log("key :",key , "value :", value);
39
      if (stringProperties.indexOf(key) != -1) {
40
        expect(value).not.toBeNull();
41 42 43
        expect(value).not.toBe("");
      }
      if (numberProperties.indexOf(key) != -1) {
44
        expect(value).not.toBeNull();
45 46
        expect(value).toBeGreaterThanOrEqual(0);
      }
47 48 49 50
      if (booleanProperties.indexOf(key) != -1) {
        expect(value).not.toBeNull();
        expect(typeof value).toBe('boolean');
      }
51 52
      if (key == 'deviceOrientation') {
        expect(['portrait', 'landscape']).toContain(value);
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
53 54 55 56
      }
      if (key == "osTheme") {
        expect(['light', 'dark']).toContain(value);
      }
57 58 59
      if (key == "appTheme") {
        expect(['light', 'dark', 'auto']).toContain(value);
      }
60
    }
61 62 63 64 65 66 67
  });
  it('Check GetSystemInfoSync required properties', async () => {
    for (let i = 0; i < requiredProperties.length; i++) {
      const key = requiredProperties[i]
      expect(`${key} not null: ${res[key] != null}`).toBe(`${key} not null: true`)
    }
  })
68
});