get-device-info.test.js 916 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
const PAGE_PATH = '/pages/API/get-device-info/get-device-info'

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

  let page;
  let res;
  const stringProperties = [
    'brand', 'deviceBrand', 'deviceId', 'model', 'deviceModel',
    'deviceType', 'devicePixelRatio', 'system', 'platform', 'uniRuntimeVersion',
  ]
  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
    await page.waitFor(600);
    res = await uni.getDeviceInfo();
  });
16
  it('Check properties', async () => {
17
    for (const key in res) {
18 19 20 21
      const value = res[key];
      console.log("key :",key , "value :", value);
      if (stringProperties.indexOf(key) != -1) {
        expect(value).not.toBeNull();
22 23
        expect(value).not.toBe("");
      }
24 25
      if (key == 'deviceOrientation') {
        expect(value).not.toBeNull();
26 27 28 29 30
        expect(['portrait', 'landscape']).toContain(value);
      }
    }
  });
});