/* * Copyright (C) 2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import app from '@system.app' import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index' import window from '@ohos.window' import screen from '@ohos.screen' const TRUE_WINDOW = true; const avoidAreaType = 3; describe('window_test', function () { var wnd; var windowTypeArr = []; var windowTypeDic = { 'APP_WINDOW_BASE': 1, 'APP_MAIN_WINDOW_BASE': 1, 'WINDOW_TYPE_APP_MAIN_WINDOW': 1, 'APP_MAIN_WINDOW_END': 1, 'APP_SUB_WINDOW_BASE': 1000, 'WINDOW_TYPE_MEDIA': 1000, 'WINDOW_TYPE_APP_SUB_WINDOW': 1001, 'APP_SUB_WINDOW_END': 1001, 'APP_WINDOW_END': 1001, 'SYSTEM_WINDOW_BASE': 2000, 'BELOW_APP_SYSTEM_WINDOW_BASE': 2000, 'WINDOW_TYPE_WALLPAPER': 2000, 'WINDOW_TYPE_DESKTOP': 2001, 'BELOW_APP_SYSTEM_WINDOW_END': 2001, 'ABOVE_APP_SYSTEM_WINDOW_BASE': 2100, 'WINDOW_TYPE_APP_LAUNCHING': 2100, 'WINDOW_TYPE_DOCK_SLICE': 2101, 'WINDOW_TYPE_INCOMING_CALL': 2102, 'WINDOW_TYPE_SEARCHING_BAR': 2103, 'WINDOW_TYPE_SYSTEM_ALARM_WINDOW': 2104, 'WINDOW_TYPE_INPUT_METHOD_FLOAT': 2105, 'WINDOW_TYPE_FLOAT': 2106, 'WINDOW_TYPE_TOAST': 2107, 'WINDOW_TYPE_STATUS_BAR': 2108, 'WINDOW_TYPE_PANEL': 2109, 'WINDOW_TYPE_KEYGUARD': 2110, 'WINDOW_TYPE_VOLUME_OVERLAY': 2111, 'WINDOW_TYPE_NAVIGATION_BAR': 2112, 'WINDOW_TYPE_DRAGGING_EFFECT': 2113, 'WINDOW_TYPE_POINTER': 2114, 'WINDOW_TYPE_LAUNCHER_RECENT': 2115, 'WINDOW_TYPE_LAUNCHER_DOCK': 2116, 'ABOVE_APP_SYSTEM_WINDOW_END': 2116, 'SYSTEM_WINDOW_END': 2116 } var topWindow; const DELAY_TIME = 3000; var listenerStatus; function callback(data) { listenerStatus = 1; console.log('windowTest OnOffTest callback ' + JSON.stringify(data) + 'listenerStatus :' + listenerStatus); } beforeAll(function (done) { windowTypeArr = Object.keys(windowTypeDic); console.log('windowTest beforeAll begin'); window.getTopWindow().then(wnd => { console.log('windowTest beforeAll window.getTopWindow wnd: ' + wnd); if (wnd) { topWindow = wnd; } else { console.log('windowTest beforeAll window.getTopWindow empty'); } }, (err) => { console.log('windowTest beforeAll window.getTopWindow failed, err : ' + JSON.stringify(err)); }) setTimeout(() => { done(); }, 5000); }) beforeEach(function (done) { if (topWindow) { topWindow.show().then(() => { console.log('windowTest beforeEach wnd.show success'); topWindow.getProperties().then(data => { if (data.isFullScreen) { topWindow.setFullScreen(false).then(() => { console.log('windowTest beforeEach wnd.setFullScreen(false) success'); }, (err) => { console.log('windowTest beforeEach wnd.getProperties failed, err : ' + JSON.stringify(err)); }) } }, (err) => { console.log('windowTest beforeEach wnd.setFullScreen(false) failed, err : ' + JSON.stringify(err)); }) }, (err) => { console.log('windowTest beforeEach wnd.show failed, err : ' + JSON.stringify(err)); }) setTimeout(() => { done(); }, DELAY_TIME); } else { done(); } }) afterEach(function () { }) afterAll(function () { }) /** * @tc.number SUB_WMS_GETPROPERTIES_JSAPI_001 * @tc.name Test getProperties_Test_001 * @tc.desc Get the current application main window properties */ it('getProperties_Test_001', 0, async function (done) { console.log('windowTest getPropertiesTest1 begin'); window.getTopWindow().then(wnd => { console.log('windowTest getPropertiesTest1 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.getProperties().then((data) => { console.log('windowTest getPropertiesTest1 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(data.type != null).assertTrue(); expect(data.windowRect != null).assertTrue(); expect(!data.isFullScreen).assertTrue(); expect(!data.isLayoutFullScreen).assertTrue(); expect(data.focusable).assertTrue(); expect(data.touchable).assertTrue(); done(); }, (err) => { console.log('windowTest getPropertiesTest1 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest getPropertiesTest1 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_GETPROPERTIES_JSAPI_002 * @tc.name Test getProperties_Test_002 * @tc.desc Get the current application main window properties */ it('getProperties_Test_002', 0, async function (done) { console.log('windowTest GetPropertiesTest2 begin'); window.getTopWindow().then(wnd => { console.log('windowTest GetPropertiesTest2 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest GetPropertiesTest2 window.getProperties callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data.type != null).assertTrue(); expect(data.windowRect != null).assertTrue(); expect(!data.isFullScreen).assertTrue(); expect(!data.isLayoutFullScreen).assertTrue(); expect(data.focusable).assertTrue(); expect(data.touchable).assertTrue(); done(); } }) }, (err) => { console.log('windowTest getPropertiesTest2 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_GETAVOIDAREA_JSAPI_001 * @tc.name Test getAvoidArea_Test_001 * @tc.desc Get SystemUI type avoidance area */ it('getAvoidArea_Test_001', 0, async function (done) { console.log('windowTest getAvoidAreaTest1 begin'); window.getTopWindow().then(wnd => { console.log('windowTest getAvoidAreaTest1 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.getAvoidArea(window.AvoidAreaType.TYPE_SYSTEM).then((data) => { console.log('windowTest getAvoidAreaTest1 wnd.getAvoidArea success, data :' + JSON.stringify(data)); expect(data.rightRect != null).assertTrue(); expect(data.topRect != null).assertTrue(); expect(data.bottomRect != null).assertTrue(); expect(data.leftRect != null).assertTrue(); done(); }, (err) => { console.log('windowTest getAvoidAreaTest1 wnd.getAvoidArea failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest getAvoidAreaTest1 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_GETAVOIDAREA_JSAPI_002 * @tc.name Test getAvoidArea_Test_002 * @tc.desc Get Notch type avoidance area */ it('getAvoidArea_Test_002', 0, async function (done) { console.log('windowTest getAvoidAreaTest2 begin'); window.getTopWindow().then(wnd => { console.log('windowTest getAvoidAreaTest2 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.getAvoidArea(window.AvoidAreaType.TYPE_CUTOUT).then((data) => { console.log('windowTest getAvoidAreaTest2 wnd.getAvoidArea success, data :' + JSON.stringify(data)); expect(data.rightRect != null).assertTrue(); expect(data.topRect != null).assertTrue(); expect(data.bottomRect != null).assertTrue(); expect(data.leftRect != null).assertTrue(); done(); }, (err) => { console.log('windowTest getAvoidAreaTest2 wnd.getAvoidArea failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest getAvoidAreaTest2 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_GETAVOIDAREA_JSAPI_003 * @tc.name Test getAvoidArea_Test_003 * @tc.desc Get system gesture type avoidance area */ it('getAvoidArea_Test_003', 0, async function (done) { console.log('windowTest getAvoidAreaTest3 begin'); window.getTopWindow().then(wnd => { console.log('windowTest getAvoidAreaTest3 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.getAvoidArea(avoidAreaType).then((data) => { console.log('windowTest getAvoidAreaTest3 wnd.getAvoidArea success, data :' + JSON.stringify(data)); expect(data.rightRect != null).assertTrue(); expect(data.topRect != null).assertTrue(); expect(data.bottomRect != null).assertTrue(); expect(data.leftRect != null).assertTrue(); done(); }, (err) => { console.log('windowTest getAvoidAreaTest3 wnd.getAvoidArea failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest getAvoidAreaTest3 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_GETAVOIDAREA_JSAPI_004 * @tc.name Test getAvoidArea_Test_004 * @tc.desc Get System type avoidance area */ it('getAvoidArea_Test_004', 0, async function (done) { console.log('windowTest getAvoidAreaTest4 begin'); window.getTopWindow().then(wnd => { console.log('windowTest getAvoidAreaTest4 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.getAvoidArea(window.AvoidAreaType.TYPE_SYSTEM, (err, data) => { if (err.code != 0) { console.log('windowTest getAvoidAreaTest4 wnd.getAvoidArea callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data.topRect != null).assertTrue(); expect(data.rightRect != null).assertTrue(); expect(data.bottomRect != null).assertTrue(); expect(data.leftRect != null).assertTrue(); done(); } }) }) }) /** * @tc.number SUB_WMS_GETAVOIDAREA_JSAPI_005 * @tc.name Test getAvoidArea_Test_005 * @tc.desc Get Cutout type avoidance area */ it('getAvoidArea_Test_005', 0, async function (done) { console.log('windowTest getAvoidAreaTest5 begin'); window.getTopWindow().then(wnd => { console.log('windowTest getAvoidAreaTest5 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.getAvoidArea(window.AvoidAreaType.TYPE_CUTOUT, (err, data) => { if (err.code != 0) { console.log('windowTest getAvoidAreaTest5 wnd.getAvoidArea callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data.topRect != null).assertTrue(); expect(data.rightRect != null).assertTrue(); expect(data.bottomRect != null).assertTrue(); expect(data.leftRect != null).assertTrue(); console.log('windowTest getAvoidAreaTest5 wnd.getAvoidArea callback end'); done(); } }) }, (err) => { console.log('windowTest getAvoidAreaTest5 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_GETAVOIDAREA_JSAPI_006 * @tc.name Test getAvoidArea_Test_006 * @tc.desc Get system gesture type avoidance area */ it('getAvoidArea_Test_006', 0, async function (done) { console.log('windowTest getAvoidAreaTest6 begin'); window.getTopWindow().then(wnd => { console.log('windowTest getAvoidAreaTest6 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.getAvoidArea(avoidAreaType, (err, data) => { if (err.code != 0) { console.log('windowTest getAvoidAreaTest6 wnd.getAvoidArea callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data.topRect != null).assertTrue(); expect(data.rightRect != null).assertTrue(); expect(data.bottomRect != null).assertTrue(); expect(data.leftRect != null).assertTrue(); done(); } }) }, (err) => { console.log('windowTest getAvoidAreaTest6 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETFULLSCREEN_JSAPI_001 * @tc.name Test setFullScreen_Test_001 * @tc.desc Set the window to be non-fullscreen first and then fullscreen */ it('setFullScreen_Test_001', 0, async function (done) { console.log('windowTest setFullScreenTest1 begin'); window.getTopWindow().then(wnd => { console.log('windowTest setFullScreenTest1 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(false).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setFullScreenTest1 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(data != null).assertTrue(); expect(!data.isFullScreen).assertTrue(); wnd.setFullScreen(true).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setFullScreenTest1 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(data != null).assertTrue(); expect(data.isFullScreen).assertTrue(); done(); }, (err) => { console.log('windowTest setFullScreenTest1 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setFullScreenTest1 wnd.setFullScreen(true) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setFullScreenTest1 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setFullScreenTest1 wnd.setFullScreen(false) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setFullScreenTest1 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETFULLSCREEN_JSAPI_002 * @tc.name Test setFullScreen_Test_002 * @tc.desc Set the window to be non-fullscreen first and then fullscreen. */ it('setFullScreen_Test_002', 0, async function (done) { window.getTopWindow().then(wnd => { console.log('windowTest SetFullScreenTest2 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(false, (err) => { if (err.code != 0) { console.log('windowTest SetFullScreenTest2 window.setFullScreen(false) callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetFullScreenTest2 window.getProperties callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(!data.isFullScreen).assertTrue(); wnd.setFullScreen(true, (err) => { if (err.code != 0) { console.log('windowTest SetFullScreenTest2 window.setFullScreen(true) callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetFullScreenTest2 window.getProperties callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data.isFullScreen).assertTrue(); console.log('windowTest SetFullScreenTest2 window.getProperties callback end'); done(); } }) } }) } }) } }) }, (err) => { console.log('windowTest setFullScreenTest1 window.getTopWindow fail : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETLAYOUTFULLSCREEN_JSAPI_001 * @tc.name Test setLayoutFullScreen_Test_001 * @tc.desc Set window and layout to full screen */ it('setLayoutFullScreen_Test_001', 0, async function (done) { console.log('windowTest setLayoutFullScreenTest1 begin'); window.getTopWindow().then(wnd => { console.log('windowTest setLayoutFullScreenTest1 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(true).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setLayoutFullScreenTest1 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(data.isFullScreen).assertTrue(); wnd.setLayoutFullScreen(true).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setLayoutFullScreenTest1 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(data != null).assertTrue(); expect(data.isLayoutFullScreen).assertTrue(); done(); }, (err) => { console.log('windowTest setLayoutFullScreenTest1 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest1 wnd.setLayoutFullScreen(true) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest1 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest1 wnd.setFullScreen(true) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest1 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETLAYOUTFULLSCREEN_JSAPI_002 * @tc.name Test setLayoutFullScreen_Test_002 * @tc.desc Set window and layout to full screen. */ it('setLayoutFullScreen_Test_002', 0, async function (done) { console.log('windowTest SetLayoutFullScreenTest2 begin'); window.getTopWindow().then(wnd => { console.log('windowTest SetLayoutFullScreenTest2 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(true, (err) => { console.log('windowTest SetLayoutFullScreenTest2 wnd.setFullScreen(true) callback begin'); if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest2 wnd.setFullScreen callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest2 wnd.getProperties callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data.isFullScreen).assertTrue(); wnd.setLayoutFullScreen(true, (err) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest2 wnd.setLayoutFullScreen callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest2 wnd.getProperties callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { console.log('windowTest SetLayoutFullScreenTest2 wnd.getProperties callback end'); expect(data.isLayoutFullScreen).assertTrue(); done(); } }) } }) } }) } }) }, (err) => { console.log('windowTest SetLayoutFullScreenTest2 window.getTopWindow fail : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETLAYOUTFULLSCREEN_JSAPI_003 * @tc.name Test setLayoutFullScreen_Test_003 * @tc.desc Set the window to full screen, the layout is not full screen */ it('setLayoutFullScreen_Test_003', 0, async function (done) { console.log('windowTest setLayoutFullScreenTest3 begin'); window.getTopWindow().then(wnd => { console.log('windowTest setLayoutFullScreenTest3 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(true).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setLayoutFullScreenTest3 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(data.isFullScreen).assertTrue(); wnd.setLayoutFullScreen(false).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setLayoutFullScreenTest3 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(data != null).assertTrue(); expect(!data.isLayoutFullScreen).assertTrue(); done(); }, (err) => { console.log('windowTest setLayoutFullScreenTest3 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest3 wnd.setLayoutFullScreen(false) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest3 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest3 wnd.setFullScreen(true) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest3 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETLAYOUTFULLSCREEN_JSAPI_004 * @tc.name Test setLayoutFullScreen_Test_004 * @tc.desc Set the window to full screen, the layout is not full screen */ it('setLayoutFullScreen_Test_004', 0, async function (done) { console.log('windowTest SetLayoutFullScreenTest4 begin'); window.getTopWindow().then(wnd => { console.log('windowTest SetLayoutFullScreenTest4 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(true, (err) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest4 wnd.setFullScreen(true) callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest4 wnd.getProperties callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data.isFullScreen).assertTrue(); wnd.setLayoutFullScreen(false, (err) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest4 wnd.setLayoutFullScreen(false) callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest4 wnd.getProperties callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { console.log('windowTest SetLayoutFullScreenTest4 wnd.getProperties callback end'); expect(!data.isLayoutFullScreen).assertTrue(); done(); } }) } }) } }) } }) }, (err) => { console.log('windowTest SetLayoutFullScreenTest4 window.getTopWindow fail : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETLAYOUTFULLSCREEN_JSAPI_005 * @tc.name Test setLayoutFullScreen_Test_005 * @tc.desc Set the window to be non-full-screen and the layout to be full-screen */ it('setLayoutFullScreen_Test_005', 0, async function (done) { console.log('windowTest setLayoutFullScreenTest5 begin'); window.getTopWindow().then(wnd => { console.log('windowTest setLayoutFullScreenTest5 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(false).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setLayoutFullScreenTest5 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(data != null).assertTrue(); expect(!data.isFullScreen).assertTrue(); wnd.setLayoutFullScreen(true).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setLayoutFullScreenTest5 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(data.isLayoutFullScreen).assertTrue(); done(); }, (err) => { console.log('windowTest setLayoutFullScreenTest5 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest5 wnd.setLayoutFullScreen(true) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest5 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest5 wnd.setFullScreen(false) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest5 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETLAYOUTFULLSCREEN_JSAPI_006 * @tc.name Test setLayoutFullScreen_Test_006 * @tc.desc Set the window to be non-full-screen and the layout to be full-screen. */ it('setLayoutFullScreen_Test_006', 0, async function (done) { console.log('windowTest SetLayoutFullScreenTest6 begin'); window.getTopWindow().then(wnd => { console.log('windowTest SetLayoutFullScreenTest6 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(false, (err) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest6 wnd.setFullScreen fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest6 wnd.getProperties fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(!data.isFullScreen).assertTrue(); wnd.setLayoutFullScreen(true, (err) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest6 wnd.setLayoutFullScreen fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest6 wnd.getProperties fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data.isLayoutFullScreen).assertTrue(); done(); } }) } }) } }) } }) }, (err) => { console.log('windowTest SetLayoutFullScreenTest6 window.getTopWindow fail : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETLAYOUTFULLSCREEN_JSAPI_007 * @tc.name Test setLayoutFullScreen_Test_007 * @tc.desc Setting windows and layouts to be non-fullscreen */ it('setLayoutFullScreen_Test_007', 0, async function (done) { console.log('windowTest setLayoutFullScreenTest7 begin'); window.getTopWindow().then(wnd => { console.log('windowTest setLayoutFullScreenTest7 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(false).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setLayoutFullScreenTest7 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(!data.isFullScreen).assertTrue(); wnd.setLayoutFullScreen(false).then(() => { wnd.getProperties().then((data) => { console.log('windowTest setLayoutFullScreenTest7 wnd.getProperties success, data : ' + JSON.stringify(data)); expect(!data.isLayoutFullScreen).assertTrue(); done(); }, (err) => { console.log('windowTest setLayoutFullScreenTest7 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest7 wnd.setLayoutFullScreen(false) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest7 wnd.getProperties failed, err : ' + JSON.stringify(err)); expect().assertFail(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest7 wnd.setFullScreen(false) failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest setLayoutFullScreenTest7 window.getTopWindow failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETLAYOUTFULLSCREEN_JSAPI_008 * @tc.name Test setLayoutFullScreen_Test_008 * @tc.desc Setting window and layouts to be non-fullscreen. */ it('setLayoutFullScreen_Test_008', 0, async function (done) { console.log('windowTest SetLayoutFullScreenTest8 begin'); window.getTopWindow().then(wnd => { console.log('windowTest SetLayoutFullScreenTest8 window.getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setFullScreen(false, (err) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest8 window.setFullScreen callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest8 window.getProperties callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(!data.isFullScreen).assertTrue(); wnd.setLayoutFullScreen(false, (err) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest8 window.setLayoutFullScreen callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getProperties((err, data) => { if (err.code != 0) { console.log('windowTest SetLayoutFullScreenTest8 window.getProperties callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(!data.isLayoutFullScreen).assertTrue(); done(); } }) } }) } }) } }) }, (err) => { console.log('windowTest setLayoutFullScreen_Test_008 window.getTopWindow fail : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_FIND_JSAPI_001 * @tc.name Test find_Test_001 * @tc.desc Query main window */ it('find_Test_001', 0, async function (done) { console.log('windowTest findTest1 begin'); window.find('window0').then((data) => { console.log('windowTest findTest1 wnd.find success, data : ' + JSON.stringify(data)); expect(data != null).assertTrue(); done(); }, (err) => { console.log('windowTest findTest1 wnd.find failed, err : ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_FIND_JSAPI_002 * @tc.name Test find_Test_002 * @tc.desc Query for non-existing windows */ it('find_Test_002', 0, async function (done) { console.log('windowTest findTest2 begin'); window.find('nonexist').then((window) => { console.log('windowTest findTest2 wnd.find success, window : ' + JSON.stringify(window)); expect().assertFail(); done(); }, (err) => { console.log('windowTest findTest2 wnd.find failed, err : ' + JSON.stringify(err)); expect(TRUE_WINDOW).assertTrue(); done(); }) }) /** * @tc.number SUB_WMS_FIND_JSAPI_004 * @tc.name Test find_Test_003 * @tc.desc Query main window. */ it('find_Test_003', 0, async function (done) { console.log('windowTest findTest3 begin'); window.find('window0', (err, data) => { if (err.code) { console.log('windowTest findTest3 wnd.find fail, err : ' + JSON.stringify(err)); expect().assertFail(); done(); } else { console.log('windowTest findTest3 wnd.find fail'); expect(data != null).assertTrue(); done(); } }) }) /** * @tc.number SUB_WMS_FIND_JSAPI_004 * @tc.name Test find_Test_004 * @tc.desc Query for non-existing windows */ it('find_Test_004', 0, async function (done) { console.log('windowTest findTest4 begin'); window.find('nonexist', (err, data) => { if (err.code) { console.log('windowTest findTest4 wnd.find fail, err : ' + JSON.stringify(err)); expect(TRUE_WINDOW).assertTrue(); done(); } else { console.log('windowTest findTest4 wnd.find success'); expect().assertFail(); done(); } }) }) /** * @tc.number SUB_WMS_ONOFF_JSAPI_001 * @tc.name Test onOff_Test_001. * @tc.desc To verify the function of enabling and disabling intercepting when the window size changes. */ it('onOff_Test_001', 0, async function (done) { console.log('windowTest OnOffTest1 begin'); window.getTopWindow((err, data) => { if (err.code != 0) { console.log('windowTest OnOffTest1 getTopWindow fail ' + JSON.stringify(err.code)); expect().assertFail(); done(); } else { expect(data != null).assertTrue(); data.on('windowSizeChange', callback); data.setLayoutFullScreen(true, (err) => { if (err.code != 0) { console.log('windowTest OnOffTest1 setLayoutFullScreen fail ' + JSON.stringify(err.code)); expect().assertFail(); done(); } else { setTimeout((async function () { expect(listenerStatus).assertEqual(1); data.off('windowSizeChange') listenerStatus = 0; data.setLayoutFullScreen(false, (err) => { if (err.code != 0 || listenerStatus == 1) { console.log('windowTest OnOffTest1 setLayoutFullScreen callback fail ' + JSON.stringify(err)); expect().assertFail(); done(); } else { console.log('windowTest OnOffTest1 listenerStatus 3: ' + listenerStatus); expect(TRUE_WINDOW).assertTrue(); done(); } }) }), 3000) } }) } }) }) /** * @tc.number SUB_WMS_ONOFF_JSAPI_002 * @tc.name Test onOff_Test_002 * @tc.desc To verify the function of enabling and disabling lawful interception in the system and window */ it('onOff_Test_002', 0, async function (done) { console.log('windowTest OnOffTest2 begin') window.getTopWindow((err, data) => { if (err.code != 0) { console.log('windowTest OnOffTest2 getTopWindow callback fail ' + JSON.stringify(err.code)); expect().assertFail(); done(); } else { expect(data != null).assertTrue(); data.on('systemAvoidAreaChange', callback); data.setFullScreen(true, (err) => { if (err.code != 0) { console.log('windowTest OnOffTest2 setLayoutFullScreen callback fail ' + JSON.stringify(err)); expect().assertFail(); done(); } else { setTimeout((async function () { console.log('windowTest OnOffTest2 listenerStatus 111: ' + listenerStatus); expect(listenerStatus).assertEqual(1); data.off('systemAvoidAreaChange') listenerStatus = 0; data.setFullScreen(false, (err) => { if (err.code != 0 || listenerStatus == 1) { console.log('windowTest OnOffTest2 setLayoutFullScreen callback fail ' + JSON.stringify(err)); expect().assertFail(); done(); } else { console.log('windowTest OnOffTest2 off callback success'); expect(TRUE_WINDOW).assertTrue(); done(); } }) }), 3000) } }) } }) }) /** * @tc.number SUB_WMS_ISSHOWING_JSAPI_001 * @tc.name Test isShowing_Test_001. * @tc.desc To verify the function of obtaining the display status when a window is hidden and then displayed. */ it('isShowing_Test_001', 0, async function (done) { console.log('windowTest IsShowingTest1 begin'); window.create('isShow1', window.WindowType.TYPE_APP).then(wnd => { expect(wnd != null).assertTrue(); wnd.isShowing().then(res => { console.log('windowTest IsShowingTest1 wnd.isShowing data:' + res); expect(!res).assertTrue(); wnd.show().then(() => { wnd.isShowing().then(res => { expect(res).assertTrue(); done(); }, (err) => { console.log('windowTest IsShowingTest1 wnd.isShowing failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest IsShowingTest1 wnd.show failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest IsShowingTest1 wnd.isShowing failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) }) /** * @tc.number SUB_WMS_ISSHOWING_JSAPI_002 * @tc.name Test isShowing_Test_002. * @tc.desc To verify the function of obtaining the display status when a window is hidden and then displayed. */ it('isShowing_Test_002', 0, async function (done) { console.log('windowTest IsShowingTest2 begin'); window.create('isShow2', window.WindowType.TYPE_APP, (err, data) => { if (err.code) { console.log('windowTest IsShowingTest2 window.create fail err ' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data != null).assertTrue(); data.isShowing((err, res1) => { if (err.code) { console.log('windowTest IsShowingTest2 data.isShowing fail err ' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(!res1).assertTrue(); data.show(() => { if (err.code) { console.log('windowTest IsShowingTest2 data.show fail err ' + JSON.stringify(err)); expect().assertFail(); done(); } else { data.isShowing((err, res2) => { if (err.code) { console.log('windowTest IsShowingTest2 data.show fail err ' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(res2).assertTrue(); done(); } }) } }) } }) } }) }) /** * @tc.number SUB_WMS_SETCOLORSPACE_JSAPI_001 * @tc.name Test setColorSpace_Test_001 * @tc.desc To verify the setting of the wide color gamut color space */ it('setColorSpace_Test_001', 0, async function (done) { console.log('windowTest SetColorSpaceTest1 begin'); window.getTopWindow().then(wnd => { console.log('windowTest SetColorSpaceTest1 wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setColorSpace(window.ColorSpace.WIDE_GAMUT).then(() => { console.log('windowTest SetColorSpaceTest1 setColorSpace WIDE_GAMUT'); wnd.getColorSpace().then(res => { expect(res == 1).assertTrue(); console.log('windowTest SetColorSpaceTest1 setColorSpace WIDE_GAMUT success'); wnd.isSupportWideGamut().then(data => { expect(data).assertTrue(); done(); }, (err) => { console.log('windowTest SetColorSpaceTest1 wnd.isSupportWideGamut failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest SetColorSpaceTest1 wnd.getColorSpace failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest SetColorSpaceTest1 wnd.setColorSpace failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest SetColorSpaceTest1 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETCOLORSPACE_JSAPI_002 * @tc.name Test setColorSpace_Test_002 * @tc.desc To verify that the color space of invaild values is set successfully */ it('setColorSpace_Test_002', 0, async function (done) { console.log('windowTest SetColorSpaceTest2 begin'); window.getTopWindow().then(wnd => { console.log('windowTest SetColorSpaceTest2 wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setColorSpace(-5).then(() => { console.log('windowTest SetColorSpaceTest2 setColorSpace -5'); expect().assertFail(); done(); },(err) => { console.log('windowTest SetColorSpaceTest2 wnd.setColorSpace failed, err :' + JSON.stringify(err)); expect(err.code).assertEqual(130); done(); }) },(err) => { console.log('windowTest SetColorSpaceTest2 wnd.getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETCOLORSPACE_JSAPI_003 * @tc.name Test setColorSpace_Test_003 * @tc.desc To verify the setting of the wide color gamut color space */ it('setColorSpace_Test_003', 0, async function (done) { console.log('windowTest SetColorSpaceTest3 begin'); window.getTopWindow().then(wnd => { console.log('windowTest SetColorSpaceTest3 wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setColorSpace(window.ColorSpace.WIDE_GAMUT, (err) => { if (err.code != 0) { console.log('windowTest SetColorSpaceTest3 setColorSpace fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { wnd.getColorSpace((err, data) => { if (err.code != 0) { console.log('windowTest SetColorSpaceTest3 getColorSpace fail ' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data == 1).assertTrue(); wnd.isSupportWideGamut((err, data) => { if (err.code != 0) { console.log('windowTest SetColorSpaceTest3 getColorSpace callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data).assertTrue(); done(); } }) } }) } }) }, (err) => { console.log('windowTest SetColorSpaceTest3 getTopWindow failed,err: ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETCOLORSPACE_JSAPI_004 * @tc.name Test setColorSpace_Test_004 * @tc.desc To verify that the color space of invalid values is set successfully */ it('setColorSpace_Test_004', 0, async function (done) { console.log('windowTest SetColorSpaceTest4 begin'); window.getTopWindow().then(wnd => { console.log('windowTest SetColorSpaceTest4 wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.setColorSpace(-5, (err) => { console.log('windowTest SetColorSpaceTest4 setColorSpace callback begin' + JSON.stringify(err)); if (err.code != 0) { console.log('windowTest SetColorSpaceTest4 setColorSpace callback fail' + JSON.stringify(err.code)); expect(err.code).assertEqual(130); done(); } else { expect().assertFail(); done(); } }) }, (err) => { console.log('windowTest SetColorSpaceTest4 getTopWindow failed,err: ' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_CREATE_JSAPI_001 * @tc.name Test create_Test_001. * @tc.desc To verify the function of creating an application subwindow. */ it('create_Test_001', 0, async function (done) { console.log('windowTest CreateTest1 begin'); window.create('subWindow', window.WindowType.TYPE_APP).then(wnd => { console.log('windowTest CreateTest1 create success wnd' + wnd); expect(wnd != null).assertTrue(); done(); }, (err) => { console.log('windowTest CreateTest1 create failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_CREATE_JSAPI_001 * @tc.name Test create_Test_002 * @tc.desc To verify the function of creating an application subwindow */ it('create_Test_002', 0, async function (done) { console.log('windowTest CreateTest2 begin'); window.create('subWindow1', window.WindowType.TYPE_APP, (err, data) => { if (err.code != 0) { console.log('windowTest CreateTest2 create callback fail' + JSON.stringify(err.code)); expect().assertFail(); done(); } else { expect(data != null).assertTrue(); console.log('windowTest CreateTest2 callback create success data' + data); done(); } }) }) /** * @tc.number SUB_WMS_DESTROY_JSAPI_001 * @tc.name Test destroy_Test_001 * @tc.desc Verify that a window is destroyed after being created */ it('destroy_Test_001', 0, async function (done) { console.log('windowTest DestroyTest1 begin'); window.create('subWindow2', window.WindowType.TYPE_APP).then(wnd => { console.log('windowTest DestroyTest1 create success wnd' + wnd); expect(wnd != null).assertTrue(); wnd.destroy().then(() => { window.find('subWindow2').then((data) => { console.log('windowTest DestroyTest1 window.find success, window :' + JSON.stringify(data)); expect().assertFail(); done(); }, (err) => { console.log('windowTest DestroyTest1 find failed, err :' + JSON.stringify(err)); expect(err.code).assertEqual(120); done(); }) }, (err) => { console.log('windowTest CreateTest1 destroy failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest CreateTest1 create failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_DESTROY_JSAPI_002 * @tc.name Test destroy_Test_002 * @tc.desc Verify that a window is destroyed after being created */ it('destroy_Test_002', 0, async function (done) { console.log('windowTest DestroyTest2 begin'); window.create('subWindow2', window.WindowType.TYPE_APP, (err, data) => { if (err.code != 0) { console.log('windowTest DestroyTest2 create callback fail' + JSON.stringify(err.code)); expect().assertFail(); done(); } else { expect(data != null).assertTrue(); data.destroy((err) => { if (err.code != 0) { console.log('windowTest DestroyTest2 create callback fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { window.find('subWindow2', (err, data) => { console.log('windowTest DestroyTest2 find callback begin' + JSON.stringify(data)); if (err.code != 0) { console.log('windowTest DestroyTest2 find callback fail' + JSON.stringify(err.code)); expect(err.code).assertEqual(120); done(); } else { console.log('windowTest DestroyTest2 find suceess,err : ' + JSON.stringify(err)); expect().assertFail(); done(); } }) } }) } }) }) /** * @tc.number SUB_WMS_SETSYSTEMBARENABLE_JSAPI_001 * @tc.name Test setSystemBarEnable_Test_001 * @tc.desc To verify the function of setting a scenario that is visible to the system bar */ it('setSystemBarEnable_Test_001', 0, async function (done) { console.log('windowTest SetSystemBarEnableTest1 begin'); var names = ["status", "navigation"]; window.getTopWindow().then(wnd => { expect(wnd != null).assertTrue(); wnd.setLayoutFullScreen(true).then(() => { wnd.setSystemBarEnable(names).then(() => { console.log('windowTest SetSystemBarEnableTest1 setSystemBarEnable success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest SetSystemBarEnableTest1 setSystemBarEnable failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest SetSystemBarEnableTest1 setLayoutFullScreen failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest SetSystemBarEnableTest1 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETSYSTEMBARENABLE_JSAPI_002 * @tc.name Test setSystemBarEnable_Test_002 * @tc.desc To verify the function of setting a scenario that is visible to the system bar */ it('setSystemBarEnable_Test_002', 0, async function (done) { console.log('windowTest SetSystemBarEnableTest2 begin'); var names = ["status", "navigation"]; window.getTopWindow((err, data) => { if (err.code != 0) { console.log('windowTest SetSystemBarEnableTest2 getTopWindow fail: ' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data != null).assertTrue(); data.setSystemBarEnable(names, (err) => { if (err.code != 0) { console.log('windowTest SetSystemBarEnableTest2 getTopWindow fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { console.log('windowTest SetSystemBarEnableTest2 setSystemBarEnable success'); expect(TRUE_WINDOW).assertTrue(); done(); } }) } }) }) /** * @tc.number SUB_WMS_SETSYSTEMBARPROPERTIES_JSAPI_001 * @tc.name Test setSystemBarProperties_Test_001 * @tc.desc To verify the function of setting system bar attributes */ it('setSystemBarProperties_Test_001', 0, async function (done) { console.log('windowTest SetSystemBarPropertiesTest1 begin'); var SystemBarProperties = { statusBarColor: '#ff00ff', navigationBarColor: '#00ff00', isStatusBarLightIcon: true, isNavigationBarLightIcon: false, statusBarContentColor: '#ffffff', navigationBarContentColor: '#00ffff' }; window.getTopWindow().then(wnd => { expect(wnd != null).assertTrue(); wnd.setSystemBarProperties(SystemBarProperties).then(() => { console.log('windowTest SetSystemBarPropertiesTest1 setSystemBarProperties success '); expect(TRUE_WINDOW).assertTrue(); done(); },(err) => { console.log('windowTest SetSystemBarPropertiesTest1 setSystemBarProperties failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) },(err) => { console.log('windowTest SetSystemBarPropertiesTest1 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETSYSTEMBARPROPERTIES_JSAPI_002 * @tc.name Test setSystemBarProperties_Test_002 * @tc.desc To verify the function of setting system bar attributes */ it('setSystemBarProperties_Test_002', 0, async function (done) { console.log('windowTest SetSystemBarPropertiesTest2 begin'); var SystemBarProperties = { statusBarColor: '#ff00ff', navigationBarColor: '#00ff00', isStatusBarLightIcon: true, isNavigationBarLightIcon: false, statusBarContentColor: '#ffffff', navigationBarContentColor: '#00ffff' }; window.getTopWindow((err, data) => { if (err.code != 0) { console.log('windowTest SetSystemBarPropertiesTest2 getTopWindow fail: ' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(data != null).assertTrue(); data.setSystemBarProperties(SystemBarProperties, (err) => { if (err.code != 0) { console.log('windowTest SetSystemBarPropertiesTest2 setSystemBarProperties fail' + JSON.stringify(err)); expect().assertFail(); done(); } else { expect(TRUE_WINDOW).assertTrue(); done(); } }) } }) }) /** * @tc.number SUB_WMS_MOVETO_JSAPI_007 * @tc.name Test move_Test_001 * @tc.desc Verify the scene where the window moves */ it('move_Test_001', 0, function () { console.log('windowTest moveTest1 begin'); window.getTopWindow().then(wnd => { console.log('windowTest moveTest1 getTopWindow wnd' + wnd); expect(wnd != null).assertTrue(); wnd.moveTo(200, 200, (err) => { if (err.code) { console.log('windowTest moveTest1 moveTo callback fail' + JSON.stringify(err.code)); expect().assertFail(); done(); } else { console.log('windowTest moveTest1 moveTo callback success'); expect(TRUE_WINDOW).assertTrue(); done(); } }) }) }) /** * @tc.number SUB_WMS_MOVETO_JSAPI_002 * @tc.name Test move_Test_002 * @tc.desc Verify the scene where the window moves */ it('move_Test_002', 0, async function (done) { console.log('windowTest moveTest2 begin'); window.getTopWindow().then(wnd => { console.log('windowTest moveTest2 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.moveTo(100, 100).then(() => { console.log('windowTest moveTest2 wnd.moveTo success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest moveTest2 wnd.moveTo failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest moveTest2 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_MOVETO_JSAPI_003 * @tc.name Test move_Test_003 * @tc.desc Verify the scene where the window moves */ it('move_Test_003', 0, async function (done) { console.log('windowTest moveTest3 begin'); window.getTopWindow().then(wnd => { console.log('windowTest moveTest3 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.moveTo(20000, 20000).then(() => { console.log('windowTest moveTest3 wnd.moveTo success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest moveTest3 wnd.moveTo failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest moveTest3 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_MOVETO_JSAPI_004 * @tc.name Test move_Test_004 * @tc.desc Verify the scene where the window moves */ it('move_Test_004', 0, async function (done) { console.log('windowTest moveTest4 begin'); window.getTopWindow().then(wnd => { console.log('windowTest moveTest4 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.moveTo(-200, -200).then(() => { console.log('windowTest moveTest4 wnd.moveTo success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest moveTest4 wnd.moveTo failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest moveTest4 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_MOVETO_JSAPI_005 * @tc.name Test move_Test_005 * @tc.desc Verify that the window is moved into the normal scene */ it('move_Test_005', 0, async function (done) { console.log('windowTest moveTest5 begin'); window.getTopWindow().then(wnd => { console.log('windowTest moveTest5 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); for (var i = 1; i <= 5; i++) { wnd.moveTo(100, 100).then(() => { expect(TRUE_WINDOW).assertTrue(); },(err) => { console.log('windowTest moveTest5 wnd.moveTo failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) } console.log('windowTest moveTest5 end'); done(); }, (err) => { console.log('windowTest moveTest5 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_MOVETO_JSAPI_001 * @tc.name Test move_Test_006 * @tc.desc Verify that the window is moved into the normal scene */ it('move_Test_006', 0, async function (done) { console.log('windowTest moveTest6 begin'); window.getTopWindow().then(wnd => { console.log('windowTest moveTest6 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.moveTo(200, 200).then(() => { console.log('windowTest moveTest6 wnd.moveTo success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest moveTest6 wnd.moveTo failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest moveTest6 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_MOVETO_JSAPI_007 * @tc.name Test move_Test_007 * @tc.desc Verify the scene where the window moves */ it('move_Test_007', 0, async function (done) { console.log('windowTest moveTestNegative begin'); window.getTopWindow().then(wnd => { console.log('windowTest moveTestNegative getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.moveTo(-200, -200).then(() => { console.log('moveTo(-200,-200) success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest moveTestNegative moveTo failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest moveTestNegative getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_MOVETO_JSAPI_008 * @tc.name Test move_Test_008 * @tc.desc Verify the scene where the window moves */ it('move_Test_008', 0, async function (done) { console.log('windowTest moveTest8 begin'); window.getTopWindow().then(wnd => { console.log('windowTest moveTest8 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.moveTo(-200, 200).then(() => { wnd.moveTo(200, -300).then(() => { expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest moveTest8 create failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest moveTest8 create failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest moveTest8 create failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_RESETSIZE_JSAPI_001 * @tc.name Test resetSize_Test_001 * @tc.desc Verify the scene where the window resets size */ it('resetSize_Test_001', 0, async function (done) { console.log('windowTest resetSizeTest1 begin'); window.getTopWindow().then(wnd => { console.log('windowTest resetSizeTest1 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.resetSize(200, 600).then(() => { console.log('windowTest resetSizeTest1 wnd.resetSize(200, 600) success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest resetSizeTest1 wnd.resetSize failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest resetSizeTest1 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_RESETSIZE_JSAPI_002 * @tc.name Test resetSize_Test_002 * @tc.desc Verify the scene where the window resets size */ it('resetSize_Test_002', 0, async function (done) { console.log('windowTest resetSizeTest2 begin'); window.getTopWindow().then(wnd => { console.log('windowTest resetSizeTest2 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.resetSize(20000, 20000).then(() => { console.log('windowTest resetSizeTest2 wnd.resetSize(20000, 20000) success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest resetSizeTest2 wnd.resetSize failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest resetSizeTest2 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_RESETSIZE_JSAPI_003 * @tc.name Test resetSize_Test_003 * @tc.desc Verify the scene where the window resets size */ it('resetSize_Test_003', 0, async function (done) { console.log('windowTest resetSizeTest3 begin'); window.getTopWindow().then(wnd => { console.log('windowTest resetSizeTest3 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.resetSize(0, 0).then(() => { console.log('windowTest resetSizeTest3 wnd.resetSize(0, 0) success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest resetSizeTest3 wnd.resetSize failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest resetSizeTest3 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_RESETSIZE_JSAPI_004 * @tc.name Test resetSize_Test_004 * @tc.desc Verify the scene where the window resets size */ it('resetSize_Test_004', 0, async function (done) { console.log('windowTest resetSizeTest4 begin'); window.getTopWindow().then(wnd => { console.log('windowTest resetSizeTest4 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.resetSize(-1, -1).then(() => { console.log('windowTest resetSizeTest4 wnd.resetSize(-1, -1) success'); expect(TRUE_WINDOW).assertTrue(); done(); }, (err) => { console.log('windowTest resetSizeTest4 wnd.resetSize failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('windowTest resetSizeTest4 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_RESETSIZE_JSAPI_005 * @tc.name Test resetSize_Test_005 * @tc.desc Verify the scene where the window resets size */ it('resetSize_Test_005', 0, async function (done) { console.log('windowTest resetSizeTest5 begin'); window.getTopWindow().then(wnd => { console.log('windowTest resetSizeTest5 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); for (var i = 1; i <= 5; i++) { wnd.resetSize(100, 100).then(() => { console.log('windowTest resetSizeTest5 wnd.resetSize(100, 100) success, count:"%d\n"', i); expect(TRUE_WINDOW).assertTrue(); },(err) => { console.log('windowTest resetSizeTest5 wnd.resetSize failed, err :' + JSON.stringify(err)); expect().assertFail(); }) } console.log('windowTest resetSizeTest5 end'); done(); }, (err) => { console.log('windowTest resetSizeTest5 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_RESETSIZETEST_JSAPI_006 * @tc.name Test resetSize_Test_006 * @tc.desc Verify the scene where the window resets size */ it('resetSize_Test_006', 0, function () { console.log('windowTest ResetSizeTest6 begin'); window.getTopWindow().then(wnd => { console.log('windowTest ResetSizeTest6 getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); wnd.resetSize(200, 200, (err) => { if (err.code) { console.log('windowTest ResetSizeTest6 resetSize callback fail' + JSON.stringify(err.code)); expect().assertFail(); done(); } else { console.log('windowTest ResetSizeTest6 resetSize callback success'); expect(TRUE_WINDOW).assertTrue(); done(); } }) }) }) /** * @tc.number SUB_WMS_RESETSIZE_JSAPI_007 * @tc.name Test resetSize_Test_007 * @tc.desc Verify the scene where the window resets size */ it('resetSize_Test_007', 0, async function (done) { var width = 100; var height = 100; console.log('windowTest resetSizeLoop begin'); window.getTopWindow().then(wnd => { console.log('windowTest resetSizeLoop getTopWindow wnd: ' + wnd); expect(wnd != null).assertTrue(); for (let i = 1; i <= 5; i++) { width = width * i; height = height * i; wnd.resetSize(width, height).then(() => { console.log('windowTest resetSizeTestLoop success'); expect(TRUE_WINDOW).assertTrue(); },(err) => { console.log('windowTest resetSizeLoop resetSize failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) } console.log('windowTest resetSizeLoop end'); done(); },(err) => { console.log('windowTest resetSizeLoop getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_GETTOPWINDOW_JSAPI_001 * @tc.name Test getTopWindow_Test_001 * @tc.desc Verify the scene that gets the top window */ it('getTopWindow_Test_001', 0, async function (done) { console.log('windowTest getTopWindowTest1 begin'); window.getTopWindow().then(wnd => { console.log('windowTest getTopWindowTest1 wnd: ' + wnd); expect(wnd != null).assertTrue(); done(); },(err) => { console.log('windowTest getTopWindowTest1 getTopWindow failed, err :' + JSON.stringify(err)); expect().assertFail(); done(); }) }) /** * @tc.number SUB_WMS_SETSCREENACTIVEMODE_JSAPI_001 * @tc.name Test setScreenActiveMode_Test_001. * @tc.desc To set the function of setting screen parameters */ it('setScreenActiveMode_Test_001', 0, async function (done) { console.log('screenshotTest setScreenActiveModeTest1 begin'); screen.getAllScreen().then(src => { console.log('screenshotTest setScreenActiveModeTest1 getAllScreen src' + src); expect(src[0] != null).assertTrue(); let screenIndex = src[0]; screenIndex.setScreenActiveMode(0).then(res => { console.log('screenshotTest setScreenActiveModeTest1 setScreenActiveMode 0 res: ' + res); expect(res).assertTrue(); done(); },(err) => { console.log('screenshotTest setScreenActiveModeTest1 setScreenActiveMode 0 failed: err' + JSON.stringify(err)); expect().assertFail(); done(); }) }, (err) => { console.log('screenshotTest setScreenActiveModeTest1 failed: err: ' + JSON.stringify(err)); done(); }) }) /** * @tc.number SUB_WMS_SETSCREENACTIVEMODE_JSAPI_002 * @tc.name Test setScreenActiveMode_Test_002. * @tc.desc To set the function of screen parameters to abnormal values. */ it('setScreenActiveMode_Test_002', 0, async function (done) { console.log('screenshotTest setScreenActiveModeTest2 begin'); screen.getAllScreen().then(src => { console.log('screenshotTest setScreenActiveModeTest2 getAllScreen src' + src); expect(src[0] != null).assertTrue(); let screenIndex = src[0]; screenIndex.setScreenActiveMode(-5).then(res => { console.log('screenshotTest setScreenActiveModeTest2 setScreenActiveMode -5 res: ' + res); expect().assertFail(); done(); },(err) => { console.log('screenshotTest setScreenActiveModeTest2 setScreenActiveMode -5 failed: err' + JSON.stringify(err)); expect(err.code).assertEqual(0); done(); }) }) }) })