From 2ea80abc214460c53ff8589069f2011c793c3ab0 Mon Sep 17 00:00:00 2001 From: qiaochenl Date: Mon, 19 Jun 2023 02:37:13 +0000 Subject: [PATCH] new polygontest Signed-off-by: qiaochenl --- .../code/polygontest/AppScope/app.json5 | 25 + .../resources/base/element/string.json | 23 + .../resources/base/media/app_icon.png | Bin 0 -> 6790 bytes .../code/polygontest/build-profile.json5 | 55 + .../polygontest/entry/build-profile.json5 | 28 + .../code/polygontest/entry/hvigorfile.ts | 2 + .../code/polygontest/entry/oh-package.json5 | 25 + .../src/main/ets/entryability/EntryAbility.ts | 41 + .../entry/src/main/ets/pages/Index.ets | 32 + .../polygontest/entry/src/main/module.json5 | 51 + .../main/resources/base/element/color.json | 8 + .../main/resources/base/element/string.json | 16 + .../src/main/resources/base/media/icon.png | Bin 0 -> 6790 bytes .../resources/base/profile/main_pages.json | 5 + .../main/resources/en_US/element/string.json | 16 + .../main/resources/zh_CN/element/string.json | 16 + .../entry/src/ohosTest/ets/test/List.test.ets | 20 + .../src/ohosTest/ets/test/Polygon.test.ets | 1732 +++++++++++++++++ .../ohosTest/ets/test/model/DateTimeUtil.ts | 64 + .../src/ohosTest/ets/test/model/Logger.ts | 44 + .../ets/test/model/MessageManager.ets | 54 + .../src/ohosTest/ets/test/model/Settings.ts | 125 ++ .../src/ohosTest/ets/test/model/Utils.ets | 118 ++ .../src/ohosTest/ets/test/model/snapShot.ts | 119 ++ .../ohosTest/ets/testability/TestAbility.ets | 88 + .../ets/testability/pages/polygon/Index.ets | 61 + .../ets/testability/pages/polygon/Index1.ets | 65 + .../ets/testability/pages/polygon/Index10.ets | 81 + .../ets/testability/pages/polygon/Index11.ets | 74 + .../ets/testability/pages/polygon/Index12.ets | 72 + .../ets/testability/pages/polygon/Index13.ets | 53 + .../ets/testability/pages/polygon/Index14.ets | 54 + .../ets/testability/pages/polygon/Index15.ets | 59 + .../ets/testability/pages/polygon/Index2.ets | 70 + .../ets/testability/pages/polygon/Index3.ets | 74 + .../ets/testability/pages/polygon/Index4.ets | 78 + .../ets/testability/pages/polygon/Index5.ets | 66 + .../ets/testability/pages/polygon/Index6.ets | 72 + .../ets/testability/pages/polygon/Index7.ets | 66 + .../ets/testability/pages/polygon/Index8.ets | 71 + .../ets/testability/pages/polygon/Index9.ets | 76 + .../testability/pages/polygon/noAntiAlias.ets | 67 + .../ets/testability/pages/polygon/noFill.ets | 66 + .../testability/pages/polygon/noHeight.ets | 51 + .../testability/pages/polygon/noPoints.ets | 65 + .../testability/pages/polygon/noStroke.ets | 73 + .../pages/polygon/noStrokeDashArray.ets | 61 + .../pages/polygon/noStrokeDashOffset.ets | 68 + .../pages/polygon/noStrokeLineCap.ets | 61 + .../pages/polygon/noStrokeLineJoin.ets | 67 + .../pages/polygon/noStrokeMiterLimit.ets | 72 + .../pages/polygon/noStrokeOpacity.ets | 77 + .../pages/polygon/noStrokeWidth.ets | 69 + .../ets/testability/pages/polygon/noWidth.ets | 51 + .../ets/testrunner/OpenHarmonyTestRunner.ts | 49 + .../entry/src/ohosTest/module.json5 | 70 + .../resources/base/element/color.json | 12 + .../resources/base/element/string.json | 16 + .../ohosTest/resources/base/media/icon.png | Bin 0 -> 6790 bytes .../resources/base/profile/test_pages.json | 33 + .../polygontest/hvigor/hvigor-config.json5 | 21 + .../code/polygontest/hvigor/hvigor-wrapper.js | 2 + .../component/code/polygontest/hvigorfile.ts | 2 + UIcompare/component/code/polygontest/hvigorw | 63 + .../component/code/polygontest/hvigorw.bat | 79 + .../code/polygontest/local.properties | 9 + .../code/polygontest/oh-package-lock.json5 | 29 + .../code/polygontest/oh-package.json5 | 27 + 68 files changed, 5059 insertions(+) create mode 100644 UIcompare/component/code/polygontest/AppScope/app.json5 create mode 100644 UIcompare/component/code/polygontest/AppScope/resources/base/element/string.json create mode 100644 UIcompare/component/code/polygontest/AppScope/resources/base/media/app_icon.png create mode 100644 UIcompare/component/code/polygontest/build-profile.json5 create mode 100644 UIcompare/component/code/polygontest/entry/build-profile.json5 create mode 100644 UIcompare/component/code/polygontest/entry/hvigorfile.ts create mode 100644 UIcompare/component/code/polygontest/entry/oh-package.json5 create mode 100644 UIcompare/component/code/polygontest/entry/src/main/ets/entryability/EntryAbility.ts create mode 100644 UIcompare/component/code/polygontest/entry/src/main/ets/pages/Index.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/main/module.json5 create mode 100644 UIcompare/component/code/polygontest/entry/src/main/resources/base/element/color.json create mode 100644 UIcompare/component/code/polygontest/entry/src/main/resources/base/element/string.json create mode 100644 UIcompare/component/code/polygontest/entry/src/main/resources/base/media/icon.png create mode 100644 UIcompare/component/code/polygontest/entry/src/main/resources/base/profile/main_pages.json create mode 100644 UIcompare/component/code/polygontest/entry/src/main/resources/en_US/element/string.json create mode 100644 UIcompare/component/code/polygontest/entry/src/main/resources/zh_CN/element/string.json create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/List.test.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/Polygon.test.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/DateTimeUtil.ts create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Logger.ts create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/MessageManager.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Settings.ts create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Utils.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/snapShot.ts create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/TestAbility.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index1.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index10.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index11.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index12.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index13.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index14.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index15.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index2.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index3.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index4.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index5.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index6.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index7.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index8.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index9.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noAntiAlias.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noFill.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noHeight.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noPoints.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStroke.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeDashArray.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeDashOffset.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeLineCap.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeLineJoin.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeMiterLimit.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeOpacity.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeWidth.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noWidth.ets create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ts create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/module.json5 create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/element/color.json create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/element/string.json create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/media/icon.png create mode 100644 UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/profile/test_pages.json create mode 100644 UIcompare/component/code/polygontest/hvigor/hvigor-config.json5 create mode 100644 UIcompare/component/code/polygontest/hvigor/hvigor-wrapper.js create mode 100644 UIcompare/component/code/polygontest/hvigorfile.ts create mode 100644 UIcompare/component/code/polygontest/hvigorw create mode 100644 UIcompare/component/code/polygontest/hvigorw.bat create mode 100644 UIcompare/component/code/polygontest/local.properties create mode 100644 UIcompare/component/code/polygontest/oh-package-lock.json5 create mode 100644 UIcompare/component/code/polygontest/oh-package.json5 diff --git a/UIcompare/component/code/polygontest/AppScope/app.json5 b/UIcompare/component/code/polygontest/AppScope/app.json5 new file mode 100644 index 0000000..e23d9cb --- /dev/null +++ b/UIcompare/component/code/polygontest/AppScope/app.json5 @@ -0,0 +1,25 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +{ + "app": { + "bundleName": "com.example.polygontest", + "vendor": "example", + "versionCode": 1000000, + "versionName": "1.0.0", + "icon": "$media:app_icon", + "label": "$string:app_name" + } +} diff --git a/UIcompare/component/code/polygontest/AppScope/resources/base/element/string.json b/UIcompare/component/code/polygontest/AppScope/resources/base/element/string.json new file mode 100644 index 0000000..d3677a8 --- /dev/null +++ b/UIcompare/component/code/polygontest/AppScope/resources/base/element/string.json @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +{ + "string": [ + { + "name": "app_name", + "value": "polygontest" + } + ] +} diff --git a/UIcompare/component/code/polygontest/AppScope/resources/base/media/app_icon.png b/UIcompare/component/code/polygontest/AppScope/resources/base/media/app_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c GIT binary patch literal 6790 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 { + if (err.code) { + hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? ''); + return; + } + hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? ''); + }); + } + + onWindowStageDestroy() { + // Main window is destroyed, release UI related resources + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy'); + } + + onForeground() { + // Ability has brought to foreground + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground'); + } + + onBackground() { + // Ability has back to background + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground'); + } +} diff --git a/UIcompare/component/code/polygontest/entry/src/main/ets/pages/Index.ets b/UIcompare/component/code/polygontest/entry/src/main/ets/pages/Index.ets new file mode 100644 index 0000000..5e39826 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/main/ets/pages/Index.ets @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +@Entry +@Component +struct Index { + @State message: string = 'Hello World' + + build() { + Row() { + Column() { + Text(this.message) + .fontSize(50) + .fontWeight(FontWeight.Bold) + } + .width('100%') + } + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/main/module.json5 b/UIcompare/component/code/polygontest/entry/src/main/module.json5 new file mode 100644 index 0000000..ac823fe --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/main/module.json5 @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +{ + "module": { + "name": "entry", + "type": "entry", + "description": "$string:module_desc", + "mainElement": "EntryAbility", + "deviceTypes": [ + "phone" + ], + "deliveryWithInstall": true, + "installationFree": false, + "pages": "$profile:main_pages", + "abilities": [ + { + "name": "EntryAbility", + "srcEntry": "./ets/entryability/EntryAbility.ts", + "description": "$string:EntryAbility_desc", + "icon": "$media:icon", + "label": "$string:EntryAbility_label", + "startWindowIcon": "$media:icon", + "startWindowBackground": "$color:start_window_background", + "exported": true, + "skills": [ + { + "entities": [ + "entity.system.home" + ], + "actions": [ + "action.system.home" + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/main/resources/base/element/color.json b/UIcompare/component/code/polygontest/entry/src/main/resources/base/element/color.json new file mode 100644 index 0000000..d66f9a7 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/main/resources/base/element/color.json @@ -0,0 +1,8 @@ +{ + "color": [ + { + "name": "start_window_background", + "value": "#FFFFFF" + } + ] +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/main/resources/base/element/string.json b/UIcompare/component/code/polygontest/entry/src/main/resources/base/element/string.json new file mode 100644 index 0000000..f945955 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/main/resources/base/element/string.json @@ -0,0 +1,16 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "module description" + }, + { + "name": "EntryAbility_desc", + "value": "description" + }, + { + "name": "EntryAbility_label", + "value": "label" + } + ] +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/main/resources/base/media/icon.png b/UIcompare/component/code/polygontest/entry/src/main/resources/base/media/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c GIT binary patch literal 6790 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['abc'] + * polygonTest_046:属性-strokeDashArray(Array)-['5aa'] + * polygonTest_047:属性-strokeDashArray(Array)-[5] + * polygonTest_048:属性-strokeDashArray(Array)-[-5] + * polygonTest_049:属性-strokeDashArray(Array)-['5vp','2px','12fp'] + * polygonTest_050:属性-strokeDashArray(Array)-[2,1,6] + * polygonTest_051:属性-strokeDashArray(Array)-[2,-2,10] + * polygonTest_052:属性-strokeDashArray(Array)-不设置 + * + * polygonTest_053:属性-strokeDashOffset(number)-10 + * polygonTest_054:属性-strokeDashOffset(number)-0 + * polygonTest_055:属性-strokeDashOffset(number)-(-10) + * polygonTest_056:属性-strokeDashOffset(number)-不设置 + * + * polygonTest_057:属性-strokeLineCap(LineCapStyle)-LineCapStyle.Butt + * polygonTest_058:属性-strokeLineCap(LineCapStyle)-LineCapStyle.Round + * polygonTest_059:属性-strokeLineCap(LineCapStyle)-LineCapStyle.Square + * polygonTest_060:属性-strokeLineCap(LineCapStyle)-不设置 + * + * polygonTest_061:属性-strokeLineJoin(LineJoinStyle)-LineJoinStyle.Miter + * polygonTest_062:属性-strokeLineJoin(LineJoinStyle)-LineJoinStyle.Round + * polygonTest_063:属性-strokeLineJoin(LineJoinStyle)-LineJoinStyle.Bevel + * polygonTest_064:属性-strokeLineJoin(LineJoinStyle)-不设置 + * + * polygonTest_065:属性-strokeMiterLimit(number)-(-3) + * polygonTest_066:属性-strokeMiterLimit(number)-0 + * polygonTest_067:属性-strokeMiterLimit(number)-1 + * polygonTest_068:属性-strokeMiterLimit(number)-10 + * polygonTest_069:属性-strokeMiterLimit(number)-不设置 + * + * polygonTest_070:属性-strokeOpacity(number)-0 + * polygonTest_071:属性-strokeOpacity(number)-0.5 + * polygonTest_072:属性-strokeOpacity(number)-(-0.5) + * polygonTest_073:属性-strokeOpacity(number)-不设置 + * + * polygonTest_074:属性-strokeWidth(number)-5 + * polygonTest_075:属性-strokeWidth(number)-0 + * polygonTest_076:属性-strokeWidth(number)-(-5) + * polygonTest_077:属性-strokeWidth(number)-不设置 + * + * polygonTest_078:属性-antiAlias(boolean)-true + * polygonTest_079:属性-antiAlias(boolean)-false + * polygonTest_080:属性-antiAlias(boolean)-不设置 + * + * polygonTest_081:场景分析用例-组件显示的尺寸、位置等被设定在显示区域之外 + * polygonTest_082:场景分析用例-通用属性与组件属性冲突 + * + * polygonTest_083:性能场景分析-图形页面展开所需时间 + * polygonTest_083:性能场景分析-图形页面滑动响应时间 + * polygonTest_083:稳定性分析-频繁打开关闭 + * polygonTest_083:稳定性分析-频繁滑动 + * polygonTest_083:其他异常场景-hap意外关闭 + * polygonTest_083:其他异常场景-设备意外关闭 + * + * Settings.createWindow(config.url): + * 创建窗口,更改窗口基本配置,更改方式详见model/Settings createWindow方法 + * + * windowSnap.snapShot(globalThis.context): + * 窗口截屏&图片文件保存,存储在设备端 + * 存储文件固定,单挑用例执行后覆盖,用于自动化UI对比 + * 支持调试更改文件名为时间戳格式,更改model/snapShot createAndGetFile方法 注释L35,放开L32,L33 + * + * Logger日志使用方法: + * import Logger form './model/Logger' + * Logger.info(TAG,`config = ${config}, err = ${JSON.stringify(exception)}`) + * */ + +export default function polygonTest() { + + function sleep(time) { + return new Promise((resolve) => setTimeout(resolve, time)) + } + + describe('polygonTest', function () { + + afterEach(async function (done) { + if (Settings.windowClass == null) { + return + } + + Settings.windowClass.destroyWindow((err) => { + if (err.code) { + Logger.error('TEST', `Failed to destroy the window. Cause : ${JSON.stringify(err)}`) + return; + } + Logger.info('TEST', `Succeeded in destroy the window.`); + }) + await sleep(1000); + done() + }) + + it('polygonTest_001',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定'150'-宽度设为-'150px' + globalThis.value.message.notify({ + name:"width", value:'150px' + }) + globalThis.value.message.notify({ + name:"height", value:'150' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_002',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定'150'-宽度设为-'150vp' + globalThis.value.message.notify({ + name:"width", value:'150vp' + }) + globalThis.value.message.notify({ + name:"height", value:'150' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_003',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定'150'-宽度设为-'150fp' + globalThis.value.message.notify({ + name:"width", value:'150fp' + }) + globalThis.value.message.notify({ + name:"height", value:'150' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_004',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noWidth", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定'150'-宽度设为-'150aaaa' + globalThis.value.message.notify({ + name:"width", value:'150aaaa' + }) + globalThis.value.message.notify({ + name:"height", value:'150' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_005',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定'150'-宽度设为-'150' + globalThis.value.message.notify({ + name:"width", value:'150' + }) + globalThis.value.message.notify({ + name:"height", value:'150' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_006',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定'150'-宽度设为-'0' + globalThis.value.message.notify({ + name:"width", value:'0' + }) + globalThis.value.message.notify({ + name:"height", value:'150' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_007',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定'150'-宽度设为-'-100' + globalThis.value.message.notify({ + name:"width", value:'-100' + }) + globalThis.value.message.notify({ + name:"height", value:'150' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_008',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定150-宽度设为-0 + globalThis.value.message.notify({ + name:"width", value:0 + }) + globalThis.value.message.notify({ + name:"height", value:150 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_009',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定150-宽度设为-(-100) + globalThis.value.message.notify({ + name:"width", value:-100 + }) + globalThis.value.message.notify({ + name:"height", value:150 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_010',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-高度已定150-宽度设为-150 + globalThis.value.message.notify({ + name:"width", value:150 + }) + globalThis.value.message.notify({ + name:"height", value:150 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_011',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定'150'-高度设为-'150px' + globalThis.value.message.notify({ + name:"width", value:'150' + }) + globalThis.value.message.notify({ + name:"height", value:'150px' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_012',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定'150'-高度设为-'150vp' + globalThis.value.message.notify({ + name:"width", value:'150' + }) + globalThis.value.message.notify({ + name:"height", value:'150vp' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_013',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定'150'-高度设为-'150fp' + globalThis.value.message.notify({ + name:"width", value:'150' + }) + globalThis.value.message.notify({ + name:"height", value:'150fp' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_014',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noHeight", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定'150'-高度设为-'150aaaa' + globalThis.value.message.notify({ + name:"width", value:'150' + }) + globalThis.value.message.notify({ + name:"height", value:'150aaaa' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_015',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定'150'-高度设为-'150' + globalThis.value.message.notify({ + name:"width", value:'150' + }) + globalThis.value.message.notify({ + name:"height", value:'150' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_016',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定'150'-高度设为-'0' + globalThis.value.message.notify({ + name:"width", value:'150' + }) + globalThis.value.message.notify({ + name:"height", value:'0' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_017',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定'150'-高度设为-'-100' + globalThis.value.message.notify({ + name:"width", value:'150' + }) + globalThis.value.message.notify({ + name:"height", value:'-100' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_018',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定150-高度设为-0 + globalThis.value.message.notify({ + name:"width", value:150 + }) + globalThis.value.message.notify({ + name:"height", value:0 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_019',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定150-高度设为-(-100) + globalThis.value.message.notify({ + name:"width", value:150 + }) + globalThis.value.message.notify({ + name:"height", value:-100 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_020',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-宽度已定150-高度设为-150 + globalThis.value.message.notify({ + name:"width", value:150 + }) + globalThis.value.message.notify({ + name:"height", value:150 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_021',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index1", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-points([[0, 0], [100, 100], [100, 0] , [0, 100]]) + globalThis.value.message.notify({ + name:"points", value:[[0, 0], [100, 100], [100, 0] , [0, 100]] + }) + globalThis.value.message.notify({ + name:"width", value:150 + }) + globalThis.value.message.notify({ + name:"height", value:150 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_022',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index1", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-points([[-100, -100], [100, 0] , [0, 100]]) + globalThis.value.message.notify({ + name:"points", value:[[-100, -100], [100, 0] , [0, 100]] + }) + globalThis.value.message.notify({ + name:"width", value:150 + }) + globalThis.value.message.notify({ + name:"height", value:150 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_023',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noPoints", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-points([[0, 0]]) + globalThis.value.message.notify({ + name:"points", value:[[0, 0]] + }) + globalThis.value.message.notify({ + name:"width", value:150 + }) + globalThis.value.message.notify({ + name:"height", value:150 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_024',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index1", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-points([['10', 0], ['40', '100'], ['70', 0]]) + globalThis.value.message.notify({ + name:"points", value:[['10', 0], ['40', '100'], ['70', 0]] + }) + globalThis.value.message.notify({ + name:"width", value:150 + }) + globalThis.value.message.notify({ + name:"height", value:150 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_025',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index1", + } + Settings.createWindow(config.uri) + await sleep(1000) + // Polygon-points([['10abc', 0], ['abc', '100'], ['100', '50abc']]) + globalThis.value.message.notify({ + name:"points", value:[['10abc', 0], ['abc', '100'], ['100', '50abc']] + }) + globalThis.value.message.notify({ + name:"width", value:150 + }) + globalThis.value.message.notify({ + name:"height", value:150 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_026',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index2", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fill(value?:ResourceColor)-Color.Blue + globalThis.value.message.notify({ + name:"fillColor", value: Color.Blue + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_027',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index2", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fill(value?:ResourceColor)-Color.Transparent + globalThis.value.message.notify({ + name:"fillColor", value: Color.Transparent + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_028',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index2", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fill(value:ResourceColor)-number-0xff0000 + globalThis.value.message.notify({ + name:"fillColor", value: 0xff0000 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_029',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index2", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fill(value:ResourceColor)-string-'#ff0000' + globalThis.value.message.notify({ + name:"fillColor", value: '#ff0000' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_030',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index2", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fill(value:ResourceColor)-string-'abcd' + globalThis.value.message.notify({ + name:"fillColor", value: 'abcd' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_031',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index2", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fill(value:ResourceColor)-string-'rgb(255, 0, 0)' + globalThis.value.message.notify({ + name:"fillColor", value: 'rgb(255, 0, 0)' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_032',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index2", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fill(value:ResourceColor)-Resource + globalThis.value.message.notify({ + name:"fillColor", value: $r('app.color.Yellow') + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_033',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noFill", + } + Settings.createWindow(config.uri) + // 属性-fill(value:ResourceColor)-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_034',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index3", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fillOpacity(value:number)-number-0 + globalThis.value.message.notify({ + name:"width", value:'90%' + }) + globalThis.value.message.notify({ + name:"height", value:50 + }) + globalThis.value.message.notify({ + name:"fillOpacity", value:0 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_035',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index3", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fillOpacity(value:number)-number-0.5 + globalThis.value.message.notify({ + name:"width", value:'90%' + }) + globalThis.value.message.notify({ + name:"height", value:50 + }) + globalThis.value.message.notify({ + name:"fillOpacity", value:0.5 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_036',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index3", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-fillOpacity(value:number)-number-(-0.5) + globalThis.value.message.notify({ + name:"width", value:'90%' + }) + globalThis.value.message.notify({ + name:"height", value:50 + }) + globalThis.value.message.notify({ + name:"fillOpacity", value:-0.5 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_037',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index4", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-stroke(value:ResourceColor)-color + globalThis.value.message.notify({ + name:"strokeColor", value: Color.Blue + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_038',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index4", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-stroke(value:ResourceColor)-number + globalThis.value.message.notify({ + name:"strokeColor", value: 0xff0000 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_039',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index4", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-stroke(value:ResourceColor)-number + globalThis.value.message.notify({ + name:"strokeColor", value: '#ffff00' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_040',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index4", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-stroke(value:ResourceColor)-string-'abcd' + globalThis.value.message.notify({ + name:"strokeColor", value: 'abcd' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_041',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index4", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-stroke(value:ResourceColor)-string-'rgb(255, 0, 0)' + globalThis.value.message.notify({ + name:"strokeColor", value: 'rgb(255, 0, 0)' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_042',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index4", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-stroke(value:ResourceColor)-string-'rgb(0, 0, 0)' + globalThis.value.message.notify({ + name:"strokeColor", value: 'rgb(0, 0, 0)' + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_043',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index4", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-stroke(value:ResourceColor)-string-Rescoure + globalThis.value.message.notify({ + name:"strokeColor", value: $r('app.color.Yellow') + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_044',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noStroke", + } + Settings.createWindow(config.uri) + // 属性-stroke(value:ResourceColor)-string-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_045',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index5", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashArray(Array)-['abc'] + globalThis.value.message.notify({ + name:"strokeDashArray", value: ['abc'] + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_046',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index5", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashArray(Array)-['5aa'] + globalThis.value.message.notify({ + name:"strokeDashArray", value: ['5aa'] + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_047',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index5", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashArray(Array)-[5] + globalThis.value.message.notify({ + name:"strokeDashArray", value: [5] + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_048',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index5", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashArray(Array)-[-5] + globalThis.value.message.notify({ + name:"strokeDashArray", value: [-5] + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_049',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index5", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashArray(Array)-['5vp','2px','12fp'] + globalThis.value.message.notify({ + name:"strokeDashArray", value: ['5vp','2px','12fp'] + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_050',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index5", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashArray(Array)-[2,1,6] + globalThis.value.message.notify({ + name:"strokeDashArray", value: [2,1,6] + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_051',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index5", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashArray(Array)-[2,-2,10] + globalThis.value.message.notify({ + name:"strokeDashArray", value: [2,-2,10] + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_052',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noStrokeDashArray", + } + Settings.createWindow(config.uri) + // 属性-strokeDashArray(Array)-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_053',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index6", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashOffset(number):10 + globalThis.value.message.notify({ + name:"strokeDashOffset", value: 10 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_054',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index6", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashOffset(number):0 + globalThis.value.message.notify({ + name:"strokeDashOffset", value: 0 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_055',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index6", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeDashOffset(number):-10 + globalThis.value.message.notify({ + name:"strokeDashOffset", value: -10 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_056',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noStrokeDashOffset", + } + Settings.createWindow(config.uri) + // 属性-strokeDashOffset(number)-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_057',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index7", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeLineCap(LineCapStyle)-LineCapStyle.Butt + globalThis.value.message.notify({ + name:"strokeLineCap", value: LineCapStyle.Butt + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_058',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index7", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeLineCap(LineCapStyle)-LineCapStyle.Round + globalThis.value.message.notify({ + name:"strokeLineCap", value: LineCapStyle.Round + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_059',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index7", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeLineCap(LineCapStyle)-LineCapStyle.Square + globalThis.value.message.notify({ + name:"strokeLineCap", value: LineCapStyle.Square + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_060',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noStrokeLineCap", + } + Settings.createWindow(config.uri) + // 属性-strokeLineCap(LineCapStyle)-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_061',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index8", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeLineJoin(LineJoinStyle)-LineJoinStyle.Miter + globalThis.value.message.notify({ + name:"strokeLineJoin", value: LineJoinStyle.Miter + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_062',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index8", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeLineJoin(LineJoinStyle)-LineJoinStyle.Round + globalThis.value.message.notify({ + name:"strokeLineJoin", value: LineJoinStyle.Round + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_063',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index8", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeLineJoin(LineJoinStyle)-LineJoinStyle.Bevel + globalThis.value.message.notify({ + name:"strokeLineJoin", value: LineJoinStyle.Bevel + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_064',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noStrokeLineJoin", + } + Settings.createWindow(config.uri) + // 属性-strokeLineJoin(LineJoinStyle)-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_065',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index9", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeMiterLimit(number)-(-3) + globalThis.value.message.notify({ + name:"strokeMiterLimit", value: -3 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_066',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index9", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeMiterLimit(number)-0 + globalThis.value.message.notify({ + name:"strokeMiterLimit", value: 0 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_067',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index9", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeMiterLimit(number)-1 + globalThis.value.message.notify({ + name:"strokeMiterLimit", value: 1 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_068',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index9", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeMiterLimit(number)-10 + globalThis.value.message.notify({ + name:"strokeMiterLimit", value: 10 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_069',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noStrokeMiterLimit", + } + Settings.createWindow(config.uri) + // 属性-strokeMiterLimit(number)-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_070',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index10", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeOpacity(number)-0 + globalThis.value.message.notify({ + name:"strokeOpacity", value: 0 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_071',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index10", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeOpacity(number)-0.5 + globalThis.value.message.notify({ + name:"strokeOpacity", value: 0.5 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_072',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index10", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeOpacity(number)-(-0.5) + globalThis.value.message.notify({ + name:"strokeOpacity", value: -0.5 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_073',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noStrokeOpacity", + } + Settings.createWindow(config.uri) + // 属性-strokeOpacity(number)-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_074',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index11", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeWidth(number)-5 + globalThis.value.message.notify({ + name:"strokeWidth", value: 5 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_075',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index11", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeWidth(number)-0 + globalThis.value.message.notify({ + name:"strokeWidth", value: 0 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_076',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index11", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-strokeWidth(number)-(-5) + globalThis.value.message.notify({ + name:"strokeWidth", value: -5 + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_077',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noStrokeWidth", + } + Settings.createWindow(config.uri) + // 属性-strokeWidth(number)-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_078',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index12", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-antiAlias(boolean)-true + globalThis.value.message.notify({ + name:"antiAlias", value: true + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_079',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index12", + } + Settings.createWindow(config.uri) + await sleep(1000) + // 属性-antiAlias(boolean)-false + globalThis.value.message.notify({ + name:"antiAlias", value: false + }) + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_080',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/noAntiAlias", + } + Settings.createWindow(config.uri) + // 属性-antiAlias(boolean)-不设置 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_081',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index13", + } + Settings.createWindow(config.uri) + // 场景分析用例-组件显示的尺寸、位置等被设定在显示区域之外 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_082',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index14", + } + Settings.createWindow(config.uri) + // 场景分析用例-通用属性与组件属性冲突 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + + it('polygonTest_083',0,async function (done){ + // 更改pages路由 + let config={ + uri:"testability/pages/polygon/Index15", + } + Settings.createWindow(config.uri) + // 性能场景分析-图形页面展开所需时间 + // 性能场景分析-图形页面滑动响应时间 + // 稳定性分析-频繁打开关闭 + // 稳定性分析-频繁滑动 + // 其他异常场景-设备意外关闭 + await sleep(1000) + windowSnap.snapShot(globalThis.context) + await sleep(1000) + + done() + }) + }) +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/DateTimeUtil.ts b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/DateTimeUtil.ts new file mode 100644 index 0000000..f2583af --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/DateTimeUtil.ts @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2023 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. + */ + +/** + * @file 日期工具 + */ +export default class DateTimeUtil { + + /** + * 时分秒 + */ + getTime() { + const DATETIME = new Date() + return this.concatTime(DATETIME.getHours(), DATETIME.getMinutes(),DATETIME.getSeconds()) + } + + /** + * 年月日 + */ + getDate() { + const DATETIME = new Date() + return this.concatDate(DATETIME.getFullYear(),DATETIME.getMonth() + 1, DATETIME.getDate()) + } + + /** + * 日期不足两位补充0 + * @param value-数据值 + */ + fill(value) { + return (value > 9 ? '' : '0') + value + } + + /** + * 年月日格式修饰 + * @param year + * @param month + * @param date + */ + concatDate(year:number,month:number, date:number) { + return `${year}${this.fill(month)}${this.fill(date)}` + } + + /** + * 时分秒格式修饰 + * @param hours + * @param minutes + * @param seconds + */ + concatTime(hours:number, minutes:number,seconds:number) { + return `${this.fill(hours)}${this.fill(minutes)}${this.fill(seconds)}` + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Logger.ts b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Logger.ts new file mode 100644 index 0000000..ce9ef80 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Logger.ts @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2023 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 hilog from '@ohos.hilog'; + +class Logger { + private domain: number; + private prefix: string; + private format: string = "%{public}s, %{public}s"; + + constructor(prefix: string) { + this.prefix = prefix; + this.domain = 0xFF00; + } + + debug(...args: any[]) { + hilog.debug(this.domain, this.prefix, this.format, args); + } + + info(...args: any[]) { + hilog.info(this.domain, this.prefix, this.format, args); + } + + warn(...args: any[]) { + hilog.warn(this.domain, this.prefix, this.format, args); + } + + error(...args: any[]) { + hilog.error(this.domain, this.prefix, this.format, args); + } +} + +export default new Logger('[Screenshot]'); \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/MessageManager.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/MessageManager.ets new file mode 100644 index 0000000..9a09c82 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/MessageManager.ets @@ -0,0 +1,54 @@ +/** + * Copyright (c) 2023 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. + */ +export interface Callback { + (message:any):void +} + +export class MessageManager { + callback:Callback + callbacks:Map = new Map() + + constructor() { + + } + + registerCallback(callback:Callback , type?:string) { + if (type == undefined) { + console.error('registerCallback callback set') + this.callback = callback + return + } + this.callbacks.set(type,callback) + } + + notify(message:any, type?:string) { + if (type == undefined) { + this.callback(message) + return + } + + let tmpCallback:Callback = this.callbacks.get(type) + if (tmpCallback === undefined) { + console.error('callbacks has no callback for type ' + type) + return + } + tmpCallback(message) + } + + clear() { + this.callbacks.clear() + this.callback = null + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Settings.ts b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Settings.ts new file mode 100644 index 0000000..87820b2 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Settings.ts @@ -0,0 +1,125 @@ +// @ts-nocheck +import screen from '@ohos.screen'; +import window from '@ohos.window'; +import Logger from './Logger'; + +const TAG: string = '[Settings]'; + +class Settings { + sleep(time) { + return new Promise((resolve) => setTimeout(resolve, time)); + } + + windowClass: window.Window = null + + changeWindowPosition(windowClass, X, Y) { + //为悬浮窗设置位置 + windowClass.moveWindowTo(X, Y, (err) => { + if (err.code) { + Logger.error(TAG, `Failed to move the window. Cause : ${JSON.stringify(err)}`) + return; + } + }) + } + + changeWindowSize(windowClass, width, height) { + //为悬浮窗设置大小 + windowClass.resize(width, height, (err) => { + if (err.code) { + Logger.error(TAG, `Failed to change the window size. Cause : ${JSON.stringify(err)}`) + return; + } + }) + } + + loadContent(windowClass, pageURI) { + //为悬浮窗加载对应的目标页面 + windowClass.setUIContent(pageURI, (err) => { + if (err.code) { + Logger.error(TAG, `Failed to load the content. Cause : ${JSON.stringify(err)}`) + return; + } + Logger.info(TAG, `Succeeded in loading the content.`); + + //显示悬浮窗 + windowClass.showWindow((err) => { + if (err.code) { + Logger.error(TAG, `Failed to show the window. Cause : ${JSON.stringify(err)}`) + return; + } + Logger.info(TAG, `Succeeded in showing the window.`); + }) + }) + } + + changeDpi(dpi) { + let screenClass = null; + screen.getAllScreens((err, data) => { + if (err.code) { + Logger.error(TAG, `Failed to get all screens. Cause : ${JSON.stringify(err)}`); + return; + } + Logger.info(TAG, `Succeeded in getting all screens. Data:${JSON.stringify(data)}`); + + screenClass = data[0]; + //设置设备dpi + screenClass.setDensityDpi(dpi, (err, data) => { + if (err.code) { + Logger.error(TAG, `Failed to set the pixel density. Code : ${JSON.stringify(err)}`) + return; + } + Logger.info(TAG, `Succeeded in setting the pixel density`); + }) + }) + } + + destroyWindow(windowClass) { + //销毁窗口 + windowClass.destroyWindow((err) => { + if (err.code) { + Logger.error(TAG, `Failed to destroy the window. Cause : ${JSON.stringify(err)}`) + return; + } + Logger.info(TAG, `Succeeded in destroy the window.`); + }) + } + + /* + * 窗口页面更新 + * Setting.createWindow(pageURI: String, {X,Y,width,height,dpi}?:{X?:number,Y?:number,width?:number,height?:number,dpi?:number}):void + * 必填: + * pageURI:页面路由 + * 选填: + * X,Y:窗口相对于左上角的位置,默认X=100,Y=100 单位为px + * width,height:窗口宽高,默认width=600,height=1250 可配置范围:[0,2560],单位为vp + * dpi:像素密度,默认dpi=330,可配置范围:80-640 + * */ + + createWindow(pageURI: String, {X=100,Y=100,width=600,height=1250,dpi=400}={}) { + Logger.info(TAG, `params,pageURI=${pageURI},X=${X},Y=${Y},width=${width},height=${height},dpi=${dpi}`) + + this.changeDpi(dpi) + this.sleep(1000) + let windowClass = null + let config = { + name: "floatWindow", + windowType: window.WindowType.TYPE_FLOAT, + ctx: globalThis.context + }; + window.createWindow(config, (err, data) => { + if (err.code) { + Logger.error(TAG, `Failed to create the floatWindow. Cause : ${JSON.stringify(err)}`) + return; + } + Logger.info(TAG, `Succeeded in creating the floatWindow. Data : ${JSON.stringify(err)}`); + windowClass = data; + this.windowClass = data; + + this.changeWindowPosition(windowClass, X, Y); + this.changeWindowSize(windowClass, width, height); + this.loadContent(windowClass, pageURI) + }) + } +} + +export default new Settings() \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Utils.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Utils.ets new file mode 100644 index 0000000..bb1f4a4 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/Utils.ets @@ -0,0 +1,118 @@ +// @ts-nocheck +/** + * Copyright (c) 2023 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. + */ + +export default class Utils { + static rect_left; + static rect_top; + static rect_right; + static rect_bottom; + static rect_value; + + static sleep(time) { + return new Promise((resolve, reject) => { + setTimeout(() => { + resolve() + }, time) + }).then(() => { + console.info(`sleep ${time} over...`) + }) + } + + static getComponentRect(key) { + let strJson = getInspectorByKey(key); + let obj = JSON.parse(strJson); + console.info("[getInspectorByKey] current component obj is: " + JSON.stringify(obj)); + let rectInfo = JSON.parse('[' + obj.$rect + ']') + console.info("[getInspectorByKey] rectInfo is: " + rectInfo); + this.rect_left = JSON.parse('[' + rectInfo[0] + ']')[0] + this.rect_top = JSON.parse('[' + rectInfo[0] + ']')[1] + this.rect_right = JSON.parse('[' + rectInfo[1] + ']')[0] + this.rect_bottom = JSON.parse('[' + rectInfo[1] + ']')[1] + return this.rect_value = { + "left": this.rect_left, "top": this.rect_top, "right": this.rect_right, "bottom": this.rect_bottom + } + } + + static async swipe(downX, downY, upX, upY, steps) { + console.info('start to swipe') + this.drags(downX, downY, upX, upY, steps, false) + } + + static async drag(downX, downY, upX, upY, steps) { + console.info('start to drag') + this.drags(downX, downY, upX, upY, steps, true) + } + + static async drags(downX, downY, upX, upY, steps, drag) { + var xStep; + var yStep; + var swipeSteps; + var ret; + xStep = 0; + yStep = 0; + ret = false; + swipeSteps = steps; + if (swipeSteps == 0) { + swipeSteps = 1; + } + xStep = (upX - downX) / swipeSteps; + yStep = (upY - downY) / swipeSteps; + console.info('move step is: ' + 'xStep: ' + xStep + ' yStep: ' + yStep) + var downPonit: TouchObject = { + id: 1, + x: downX, + y: downY, + type: TouchType.Down, + } + console.info('down touch started: ' + JSON.stringify(downPonit)) + sendTouchEvent(downPonit); + console.info('start to move') + if (drag) { + await this.sleep(500) + } + for (var i = 1;i <= swipeSteps; i++) { + var movePoint: TouchObject = { + id: 1, + x: downX + (xStep * i), + y: downY + (yStep * i), + type: TouchType.Move + } + console.info('move touch started: ' + JSON.stringify(movePoint)) + ret = sendTouchEvent(movePoint) + if (ret == false) { + break; + } + await this.sleep(5) + } + console.info('start to up') + if (drag) { + await this.sleep(100) + } + var upPoint: TouchObject = { + id: 1, + x: upX, + y: upY, + type: TouchType.Up, + } + console.info('up touch started: ' + JSON.stringify(upPoint)) + sendTouchEvent(upPoint) + await this.sleep(500) + } +} + + + + diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/snapShot.ts b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/snapShot.ts new file mode 100644 index 0000000..8e403c1 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/test/model/snapShot.ts @@ -0,0 +1,119 @@ +// @ts-nocheck +import window from '@ohos.window'; +import Logger from './Logger'; +import image from '@ohos.multimedia.image'; +import mediaLibrary from '@ohos.multimedia.mediaLibrary'; +import fs from '@ohos.file.fs'; +import DateTimeUtil from './DateTimeUtil'; + +const TAG: string = '[windowSnap]'; +const INFO = { + "img": { + prefix: 'IMG_', + suffix: '.webp', + directory: mediaLibrary.DirectoryType.DIR_IMAGE, + mediaType: mediaLibrary.MediaType.IMAGE + }, + "txt": { + prefix: 'TXT_', + suffix: '.txt', + directory: mediaLibrary.DirectoryType.DIR_DOCUMENTS, + mediaType: mediaLibrary.MediaType.FILE + } +} + +class windowSnap { + async createAndGetFile(context: any, type) { + Logger.info(TAG, `createAndGetFile start`) + let mediaTest = mediaLibrary.getMediaLibrary(context) + let info = INFO[type] + + //文件名为时间戳格式 + //let dateTimeUtil=new DateTimeUtil() + //let name=`${dateTimeUtil.getDate()}_${dateTimeUtil.getTime()}` + //文件名固定,用于自动化UI对比 + let name = "test" + let displayName = `${info.prefix}${name}${info.suffix}` + let option = { + selections: mediaLibrary.FileKey.DISPLAY_NAME + '=?', + selectionArgs: [displayName], + } + let fetchFileResult = await mediaTest.getFileAssets(option); + if (fetchFileResult.getCount()) { + let asset = await fetchFileResult.getFirstObject(); + await mediaTest.deleteAsset(asset.uri) + } + let publicPath = await mediaTest.getPublicDirectory(info.directory) + Logger.info(TAG, `publicPath=${publicPath},displayName=${displayName}`) + return await mediaTest.createAsset(info.mediaType, displayName, publicPath) + } + + async savePicture(data: image.PixelMap, context: any) { + let packOpts: image.PackingOption = { + format: "image/webp", quality: 100 + } + let imagePackerApi = image.createImagePacker() + let arrayBuffer = await imagePackerApi.packing(data, packOpts) + let fileAsset = await this.createAndGetFile(context, "img") + let fd = await fileAsset.open('Rw') + imagePackerApi.release() + try { + await fs.write(fd, arrayBuffer) + } catch (err) { + Logger.error(TAG, `write failed ,code is ${err.code},message is ${err.message}`) + } + await fileAsset.close(fd) + Logger.info(TAG, `write picture done`) + } + + async saveTXT(data, context) { + let fileAsset = await this.createAndGetFile(context, "txt") + let fd = await fileAsset.open('Rw') + try { + await fs.write(fd, data) + } catch (err) { + Logger.error(TAG, `write failed ,code is ${err.code},message is ${err.message}`) + } + await fileAsset.close(fd) + Logger.info(TAG, `write txt done`) + } + + + /* + * 获取窗口结合&文件保存 + * 入参必填 ability的context + + * snapShot + * savePicture:设备端保存路径:/storage/media/100/local/files/Pictures/IMG_test.webp + * saveTXT:设备端保存路径:/storage/media/100/local/files/Documents/TXT_test.txt + **/ + async snapShot(context) { + //获取窗口 + Logger.info(TAG, 'start snapshot') + let windowClass = null; + try { + windowClass = window.findWindow('floatWindow'); + Logger.info(TAG, 'find window success') + } catch (exception) { + Logger.error(TAG, 'Failed to find the window. Cause:' + JSON.stringify(exception)) + } + //截屏 + windowClass.snapshot((err, data) => { + if (err.code) { + console.error(TAG, 'Failed to snapshot window. Cause:' + JSON.stringify(err)); + return; + } + + this.savePicture(data, context) + + const readBuffer = new ArrayBuffer(data.getPixelBytesNumber()) + data.readPixelsToBuffer(readBuffer, () => { + //保存成像素值 + this.saveTXT(readBuffer, context) + }) + data.release(); + }); + } +} + +export default new windowSnap() \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/TestAbility.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/TestAbility.ets new file mode 100644 index 0000000..eecb834 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/TestAbility.ets @@ -0,0 +1,88 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +// @ts-nocheck +import bundleManager from '@ohos.bundle.bundleManager'; +import abilityAccessCtrl from '@ohos.abilityAccessCtrl'; +import UIAbility from '@ohos.app.ability.UIAbility'; +import AbilityDelegatorRegistry from '@ohos.app.ability.abilityDelegatorRegistry'; +import hilog from '@ohos.hilog'; +import { Hypium } from '@ohos/hypium'; +import testsuite from '../test/List.test'; +import window from '@ohos.window'; +import Logger from '../test/model/Logger' + +const TAG: string = '[createWindow]' + +export default class TestAbility extends UIAbility { + sleep(time) { + return new Promise((resolve) => setTimeout(resolve, time)); + } + + onCreate(want, launchParam) { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onCreate'); + hilog.info(0x0000, 'testTag', '%{public}s', 'want param:' + JSON.stringify(want) ?? ''); + hilog.info(0x0000, 'testTag', '%{public}s', 'launchParam:' + JSON.stringify(launchParam) ?? ''); + var abilityDelegator: any + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var abilityDelegatorArguments: any + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + hilog.info(0x0000, 'testTag', '%{public}s', 'start run testcase!!!'); + Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite) + } + + onDestroy() { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onDestroy'); + } + + onWindowStageCreate(windowStage: window.WindowStage) { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageCreate'); + globalThis.context = this.context + + //系统授权,读写权限 + let atManager = abilityAccessCtrl.createAtManager(); + let appFlags = bundleManager.BundleFlag.GET_BUNDLE_INFO_WITH_APPLICATION; + let permissionFlags = 0; + bundleManager.getBundleInfoForSelf(appFlags, (err, data) => { + if (err) { + Logger.error(TAG, 'getAllApplicationInfo failed: %{public}s', err.message); + console.error("") + } + let tokenID = data.appInfo.accessTokenId; //系统应用可以通过bundleManager.getApplicationInfo获取,普通应用可以通过bundleManager.getBundleInfoForSelf获取 + atManager.grantUserGrantedPermission(tokenID, 'ohos.permission.READ_MEDIA', permissionFlags, (err, data) => { + if (err) { + Logger.info(TAG, `grantUserGrantedPermission fail, err->${JSON.stringify(err)}`) + } + }) + atManager.grantUserGrantedPermission(tokenID, 'ohos.permission.WRITE_MEDIA', permissionFlags, (err, data) => { + if (err) { + Logger.info(TAG, `grantUserGrantedPermission fail, err->${JSON.stringify(err)}`) + } + }) + }) + } + + onWindowStageDestroy() { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onWindowStageDestroy'); + } + + onForeground() { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onForeground'); + } + + onBackground() { + hilog.info(0x0000, 'testTag', '%{public}s', 'TestAbility onBackground'); + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index.ets new file mode 100644 index 0000000..eadb09f --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index.ets @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .stroke(Color.Black) + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index1.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index1.ets new file mode 100644 index 0000000..1e06022 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index1.ets @@ -0,0 +1,65 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State pointsValue: Array = [[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]] + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'points') { + this.pointsValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points(this.pointsValue) + .stroke(Color.Black) + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index10.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index10.ets new file mode 100644 index 0000000..cf47b82 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index10.ets @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 300 + @State heightValue: number = 50 + @State strokeLineCapValue: LineCapStyle = LineCapStyle.Butt + @State strokeLineJoinValue: LineJoinStyle = LineJoinStyle.Miter + @State strokeMiterLimitValue: number = 4 + @State strokeOpacityValue: number = 1 + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeLineCap') { + this.strokeLineCapValue = message.value + } + if (message.name == 'strokeLineJoin') { + this.strokeLineJoinValue = message.value + } + if (message.name == 'strokeMiterLimit') { + this.strokeMiterLimitValue = message.value + } + if (message.name == 'strokeOpacity') { + this.strokeOpacityValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:宽度'300'-高度'50' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeLineCap(this.strokeLineCapValue) + .strokeLineJoin(this.strokeLineJoinValue) + .strokeMiterLimit(this.strokeMiterLimitValue) + .strokeOpacity(this.strokeOpacityValue) + .fill(Color.Pink) + .stroke(Color.Black) + .strokeWidth(4) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index11.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index11.ets new file mode 100644 index 0000000..7905ceb --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index11.ets @@ -0,0 +1,74 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 300 + @State heightValue: number = 50 + @State fillOpacityValue: number = 0 + @State pointsValue: Array = [[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]] + @State strokeWidthValue: number = 1 + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'points') { + this.pointsValue = message.value + } + if (message.name == 'fillOpacity') { + this.fillOpacityValue = message.value + } + if (message.name == 'strokeWidth') { + this.strokeWidthValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points(this.pointsValue) + .fillOpacity(this.fillOpacityValue) + .strokeWidth(this.strokeWidthValue) + .stroke(Color.Blue) + .backgroundColor(Color.Red) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index12.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index12.ets new file mode 100644 index 0000000..c4d40a7 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index12.ets @@ -0,0 +1,72 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State strokeLineCapValue: LineCapStyle = LineCapStyle.Butt + @State antiAliasValue: boolean = true + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeLineCap') { + this.strokeLineCapValue = message.value + } + if (message.name == 'antiAlias') { + this.antiAliasValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeLineCap(this.strokeLineCapValue) + .antiAlias(this.antiAliasValue) + .fillOpacity(0) + .stroke(Color.Black) + .strokeWidth(8) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index13.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index13.ets new file mode 100644 index 0000000..907e98d --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index13.ets @@ -0,0 +1,53 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'150'-宽度'150' + .width(150) + .height(150) + // 在矩形框中绘制一个五边形,起点(150, 0),依次经过(0, 150)、(120, 1100)和(180, 1100),终点(1100, 150) + .points([[150, 0], [0, 150], [120, 1100], [180, 1100], [1100, 150]]) + .position({x:10,y:10}) + .fillOpacity(0) + .stroke(Color.Black) + .strokeWidth(5) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index14.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index14.ets new file mode 100644 index 0000000..1b41776 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index14.ets @@ -0,0 +1,54 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'150'-宽度'150' + .width(150) + .height(150) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .fillOpacity(0) + .stroke(Color.Blue) + .strokeWidth(5) + .borderColor(Color.Red) + .borderWidth(5) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index15.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index15.ets new file mode 100644 index 0000000..2fffa51 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index15.ets @@ -0,0 +1,59 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + // 在 100 * 100 的矩形框中绘制一个三角形,起点(0, 0),经过(50, 100),终点(100, 0) + Polygon({ width: 100, height: 100 }) + .points([[0, 0], [50, 100], [100, 0]]) + .fill(Color.Green) + .margin({ top: 20 }) + // 在 100 * 100 的矩形框中绘制一个四边形,起点(0, 0),经过(0, 100)和(100, 100),终点(100, 0) + Polygon().width(100).height(100) + .points([[0, 0], [0, 100], [100, 100], [100, 0]]) + .fillOpacity(0) + .strokeWidth(5) + .stroke(Color.Blue) + .margin({ top: 20 }) + // 在 100 * 100 的矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + Polygon().width(100).height(100) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .fill(Color.Red) + .fillOpacity(0.6) + .margin({ top: 20 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index2.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index2.ets new file mode 100644 index 0000000..f75f41d --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index2.ets @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State pointsValue: Array = [[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]] + @State fillColor: Color = Color.White + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'points') { + this.pointsValue = message.value + } + if (message.name == 'fillColor') { + this.fillColor = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points(this.pointsValue) + .fill(this.fillColor) + .stroke(Color.Black) + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index3.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index3.ets new file mode 100644 index 0000000..9c5764b --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index3.ets @@ -0,0 +1,74 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State pointsValue: Array = [[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]] + @State fillColor: Color = Color.White + @State fillOpacityValue: number = 0 + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'points') { + this.pointsValue = message.value + } + if (message.name == 'fillColor') { + this.fillColor = message.value + } + if (message.name == 'fillOpacity') { + this.fillOpacityValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points(this.pointsValue) + .fill(this.fillColor) + .fillOpacity(this.fillOpacityValue) + .stroke(Color.Black) + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index4.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index4.ets new file mode 100644 index 0000000..d5f631a --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index4.ets @@ -0,0 +1,78 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State pointsValue: Array = [[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]] + @State fillColor: Color = Color.White + @State fillOpacityValue: number = 0 + @State strokeColor: Color = Color.Black + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'points') { + this.pointsValue = message.value + } + if (message.name == 'fillColor') { + this.fillColor = message.value + } + if (message.name == 'fillOpacity') { + this.fillOpacityValue = message.value + } + if (message.name == 'strokeColor') { + this.strokeColor = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points(this.pointsValue) + .fill(this.fillColor) + .fillOpacity(this.fillOpacityValue) + .stroke(this.strokeColor) + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index5.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index5.ets new file mode 100644 index 0000000..a7a7ea1 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index5.ets @@ -0,0 +1,66 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State strokeDashArrayValue: Array = [] + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeDashArray') { + this.strokeDashArrayValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeDashArray(this.strokeDashArrayValue) + .fill(Color.White) + .stroke(Color.Black) + .strokeWidth(8) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index6.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index6.ets new file mode 100644 index 0000000..08a6dd7 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index6.ets @@ -0,0 +1,72 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 300 + @State heightValue: number = 50 + @State strokeDashArrayValue: Array = [20] + @State strokeDashOffsetValue: number = 0 + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeDashArray') { + this.strokeDashArrayValue = message.value + } + if (message.name == 'strokeDashOffset') { + this.strokeDashOffsetValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeDashArray(this.strokeDashArrayValue) + .strokeDashOffset(this.strokeDashOffsetValue) + .fill(Color.Pink) + .stroke(Color.Black) + .strokeWidth(4) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index7.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index7.ets new file mode 100644 index 0000000..9f2f77b --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index7.ets @@ -0,0 +1,66 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State strokeLineCapValue: LineCapStyle = LineCapStyle.Butt + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeLineCap') { + this.strokeLineCapValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeLineCap(this.strokeLineCapValue) + .fillOpacity(0) + .stroke(Color.Black) + .strokeWidth(8) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index8.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index8.ets new file mode 100644 index 0000000..592022a --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index8.ets @@ -0,0 +1,71 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 300 + @State heightValue: number = 50 + @State strokeLineCapValue: LineCapStyle = LineCapStyle.Butt + @State strokeLineJoinValue: LineJoinStyle = LineJoinStyle.Miter + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeLineCap') { + this.strokeLineCapValue = message.value + } + if (message.name == 'strokeLineJoin') { + this.strokeLineJoinValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeLineCap(this.strokeLineCapValue) + .strokeLineJoin(this.strokeLineJoinValue) + .fill(Color.Pink) + .stroke(Color.Black) + .strokeWidth(4) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index9.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index9.ets new file mode 100644 index 0000000..21e9b97 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/Index9.ets @@ -0,0 +1,76 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State strokeLineCapValue: LineCapStyle = LineCapStyle.Butt + @State strokeLineJoinValue: LineJoinStyle = LineJoinStyle.Miter + @State strokeMiterLimitValue: number = 4 + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeLineCap') { + this.strokeLineCapValue = message.value + } + if (message.name == 'strokeLineJoin') { + this.strokeLineJoinValue = message.value + } + if (message.name == 'strokeMiterLimit') { + this.strokeMiterLimitValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个三角形,[['10', 0], ['40', '100'], ['70', 0]] + .points([['10', 0], ['40', '100'], ['70', 0]]) + .strokeLineCap(this.strokeLineCapValue) + .strokeLineJoin(this.strokeLineJoinValue) + .strokeMiterLimit(this.strokeMiterLimitValue) + .fill(Color.Pink) + .stroke(0xEE8443) + .strokeWidth(10) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noAntiAlias.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noAntiAlias.ets new file mode 100644 index 0000000..fc93ffb --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noAntiAlias.ets @@ -0,0 +1,67 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State widthValue: number = 100 + @State heightValue: number = 100 + @State strokeLineCapValue: LineCapStyle = LineCapStyle.Butt + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeLineCap') { + this.strokeLineCapValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeLineCap(this.strokeLineCapValue) + //.antiAlias(this.antiAliasValue) 不设置antiAlias + .fillOpacity(0) + .stroke(Color.Black) + .strokeWidth(8) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noFill.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noFill.ets new file mode 100644 index 0000000..1339f4e --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noFill.ets @@ -0,0 +1,66 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State pointsValue: Array = [[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]] + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'points') { + this.pointsValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points(this.pointsValue) + //.fill(this.fillColor) 不设置fill + .stroke(Color.Black) + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noHeight.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noHeight.ets new file mode 100644 index 0000000..3d66db7 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noHeight.ets @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'150aaaa'-宽度'150' + .width('150') + .height('150aaaa') + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .stroke(Color.Black) + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noPoints.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noPoints.ets new file mode 100644 index 0000000..d6f79b0 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noPoints.ets @@ -0,0 +1,65 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 100 + @State heightValue: number = 100 + @State pointsValue: Array = [[0, 0]] + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'points') { + this.pointsValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个图形,[[0, 0]] + .points(this.pointsValue) + .stroke(Color.Black) + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStroke.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStroke.ets new file mode 100644 index 0000000..3f1781b --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStroke.ets @@ -0,0 +1,73 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State widthValue: number = 100 + @State heightValue: number = 100 + @State pointsValue: Array = [[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]] + @State fillColor: Color = Color.White + @State fillOpacityValue: number = 0 + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'points') { + this.pointsValue = message.value + } + if (message.name == 'fillColor') { + this.fillColor = message.value + } + if (message.name == 'fillOpacity') { + this.fillOpacityValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points(this.pointsValue) + .fill(this.fillColor) + .fillOpacity(this.fillOpacityValue) + //.stroke(this.strokeColor) 不设置stroke + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeDashArray.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeDashArray.ets new file mode 100644 index 0000000..05a1285 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeDashArray.ets @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State widthValue: number = 100 + @State heightValue: number = 100 + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + //.strokeDashArray(this.strokeDashArrayValue) 不设置strokeDashArray + .fill(Color.White) + .stroke(Color.Black) + .strokeWidth(8) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeDashOffset.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeDashOffset.ets new file mode 100644 index 0000000..1b11705 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeDashOffset.ets @@ -0,0 +1,68 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State message: string = 'Hello' + @State widthValue: number = 300 + @State heightValue: number = 50 + @State strokeDashArrayValue: Array = [20] + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeDashArray') { + this.strokeDashArrayValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeDashArray(this.strokeDashArrayValue) + //.strokeDashOffset(this.strokeDashOffsetValue) 不设置strokeDashOffset + .fill(Color.Pink) + .stroke(Color.Black) + .strokeWidth(4) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeLineCap.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeLineCap.ets new file mode 100644 index 0000000..466ced7 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeLineCap.ets @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State widthValue: number = 100 + @State heightValue: number = 100 + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + //.strokeLineCap(this.strokeLineCapValue) 不设置strokeLineCap + .fillOpacity(0) + .stroke(Color.Black) + .strokeWidth(8) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeLineJoin.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeLineJoin.ets new file mode 100644 index 0000000..db9f238 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeLineJoin.ets @@ -0,0 +1,67 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State widthValue: number = 300 + @State heightValue: number = 50 + @State strokeLineCapValue: LineCapStyle = LineCapStyle.Butt + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeLineCap') { + this.strokeLineCapValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeLineCap(this.strokeLineCapValue) + //.strokeLineJoin(this.strokeLineJoinValue) 不设置strokeLineJoin + .fill(Color.Pink) + .stroke(Color.Black) + .strokeWidth(4) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeMiterLimit.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeMiterLimit.ets new file mode 100644 index 0000000..9d3d267 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeMiterLimit.ets @@ -0,0 +1,72 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State widthValue: number = 100 + @State heightValue: number = 100 + @State strokeLineCapValue: LineCapStyle = LineCapStyle.Butt + @State strokeLineJoinValue: LineJoinStyle = LineJoinStyle.Miter + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeLineCap') { + this.strokeLineCapValue = message.value + } + if (message.name == 'strokeLineJoin') { + this.strokeLineJoinValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'100'-宽度'100' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个三角形,[['10', 0], ['40', '100'], ['70', 0]] + .points([['10', 0], ['40', '100'], ['70', 0]]) + .strokeLineCap(this.strokeLineCapValue) + .strokeLineJoin(this.strokeLineJoinValue) + //.strokeMiterLimit(this.strokeMiterLimitValue) 不设置strokeMiterLimit + .fill(Color.Pink) + .stroke(0xEE8443) + .strokeWidth(10) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeOpacity.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeOpacity.ets new file mode 100644 index 0000000..29790b4 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeOpacity.ets @@ -0,0 +1,77 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State widthValue: number = 300 + @State heightValue: number = 50 + @State strokeLineCapValue: LineCapStyle = LineCapStyle.Butt + @State strokeLineJoinValue: LineJoinStyle = LineJoinStyle.Miter + @State strokeMiterLimitValue: number = 4 + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'strokeLineCap') { + this.strokeLineCapValue = message.value + } + if (message.name == 'strokeLineJoin') { + this.strokeLineJoinValue = message.value + } + if (message.name == 'strokeMiterLimit') { + this.strokeMiterLimitValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:宽度'300'-高度'50' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .strokeLineCap(this.strokeLineCapValue) + .strokeLineJoin(this.strokeLineJoinValue) + .strokeMiterLimit(this.strokeMiterLimitValue) + //.strokeOpacity(this.strokeOpacityValue) 不设置strokeOpacity + .fill(Color.Pink) + .stroke(Color.Black) + .strokeWidth(4) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeWidth.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeWidth.ets new file mode 100644 index 0000000..0d766f1 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noStrokeWidth.ets @@ -0,0 +1,69 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + @State widthValue: number = 300 + @State heightValue: number = 50 + @State fillOpacityValue: number = 0 + @State pointsValue: Array = [[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]] + + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + if (message.name == 'width') { + this.widthValue = message.value + } + if (message.name == 'height') { + this.heightValue = message.value + } + if (message.name == 'points') { + this.pointsValue = message.value + } + if (message.name == 'fillOpacity') { + this.fillOpacityValue = message.value + } + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'50'-宽度'300' + .width(this.widthValue) + .height(this.heightValue) + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points(this.pointsValue) + .fillOpacity(this.fillOpacityValue) + //.strokeWidth(this.strokeWidthValue) 不设置StrokeWidth + .stroke(Color.Blue) + .backgroundColor(Color.Red) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noWidth.ets b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noWidth.ets new file mode 100644 index 0000000..2b09f48 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testability/pages/polygon/noWidth.ets @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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 { MessageManager, Callback } from '../../../test/model/MessageManager'; +import { AxisValue } from '@ohos.multimodalInput.mouseEvent'; + +@Entry +@Component +struct Index { + messageManager: MessageManager = new MessageManager() + + onPageShow() { + console.info('NavDestination onPageShow') + globalThis.value = { + name: 'messageManager', message: this.messageManager + } + let callback: Callback = (message: any) => { + console.error('message = ' + message.name + "--" + message.value) + } + this.messageManager.registerCallback(callback) + } + + build() { + Column() { + Polygon() + // Polygon:高度'150'-宽度'150aaaa' + .width('150aaaa') + .height('150') + // 在矩形框中绘制一个五边形,起点(50, 0),依次经过(0, 50)、(20, 100)和(80, 100),终点(100, 50) + .points([[50, 0], [0, 50], [20, 100], [80, 100], [100, 50]]) + .stroke(Color.Black) + .strokeWidth(3) + .backgroundColor(Color.Brown) + .margin({ top: 100 }) + } + .width('100%') + .height('100%') + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ts b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ts new file mode 100644 index 0000000..92a16d8 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ts @@ -0,0 +1,49 @@ +import hilog from '@ohos.hilog'; +import TestRunner from '@ohos.application.testRunner'; +import AbilityDelegatorRegistry from '@ohos.app.ability.abilityDelegatorRegistry'; + +var abilityDelegator = undefined +var abilityDelegatorArguments = undefined + +async function onAbilityCreateCallback() { + hilog.info(0x0000, 'testTag', '%{public}s', 'onAbilityCreateCallback'); +} + +async function addAbilityMonitorCallback(err: any) { + hilog.info(0x0000, 'testTag', 'addAbilityMonitorCallback : %{public}s', JSON.stringify(err) ?? ''); +} + +export default class OpenHarmonyTestRunner implements TestRunner { + constructor() { + } + + onPrepare() { + hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner OnPrepare '); + } + + async onRun() { + hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun run'); + abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments() + abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator() + var testAbilityName = abilityDelegatorArguments.bundleName + '.TestAbility' + let lMonitor = { + abilityName: testAbilityName, + onAbilityCreate: onAbilityCreateCallback, + }; + abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback) + var cmd = 'aa start -d 0 -a TestAbility' + ' -b ' + abilityDelegatorArguments.bundleName + var debug = abilityDelegatorArguments.parameters['-D'] + if (debug == 'true') + { + cmd += ' -D' + } + hilog.info(0x0000, 'testTag', 'cmd : %{public}s', cmd); + abilityDelegator.executeShellCommand(cmd, + (err: any, d: any) => { + hilog.info(0x0000, 'testTag', 'executeShellCommand : err : %{public}s', JSON.stringify(err) ?? ''); + hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.stdResult ?? ''); + hilog.info(0x0000, 'testTag', 'executeShellCommand : data : %{public}s', d.exitCode ?? ''); + }) + hilog.info(0x0000, 'testTag', '%{public}s', 'OpenHarmonyTestRunner onRun end'); + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/module.json5 b/UIcompare/component/code/polygontest/entry/src/ohosTest/module.json5 new file mode 100644 index 0000000..1752470 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/module.json5 @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +{ + "module": { + "name": "entry_test", + "type": "feature", + "description": "$string:module_test_desc", + "mainElement": "TestAbility", + "deviceTypes": [ + "default", + "tablet" + ], + "deliveryWithInstall": true, + "installationFree": false, + "pages": "$profile:test_pages", + "requestPermissions": [ + { + "name": "ohos.permission.SYSTEM_FLOAT_WINDOW", + "usedScene": { + "abilities":[ + "EntryAbility" + ], + "when": "inuse" + } + },{ + "name": "ohos.permission.GRANT_SENSITIVE_PERMISSIONS" + },{ + "name": "ohos.permission.WRITE_MEDIA" + }, + { + "name": "ohos.permission.READ_MEDIA" + } + ], + "abilities": [ + { + "name": "TestAbility", + "srcEntrance": "./ets/testability/TestAbility.ets", + "description": "$string:TestAbility_desc", + "icon": "$media:icon", + "label": "$string:TestAbility_label", + "visible": true, + "startWindowIcon": "$media:icon", + "startWindowBackground": "$color:start_window_background", + "skills": [ + { + "actions": [ + "action.system.home" + ], + "entities": [ + "entity.system.home" + ] + } + ] + } + ] + } +} diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/element/color.json b/UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/element/color.json new file mode 100644 index 0000000..3252c1a --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/element/color.json @@ -0,0 +1,12 @@ +{ + "color": [ + { + "name": "start_window_background", + "value": "#FFFFFF" + }, + { + "name": "Yellow", + "value": "#ffff00" + } + ] +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/element/string.json b/UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/element/string.json new file mode 100644 index 0000000..65d8fa5 --- /dev/null +++ b/UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/element/string.json @@ -0,0 +1,16 @@ +{ + "string": [ + { + "name": "module_test_desc", + "value": "test ability description" + }, + { + "name": "TestAbility_desc", + "value": "the test ability" + }, + { + "name": "TestAbility_label", + "value": "test label" + } + ] +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/media/icon.png b/UIcompare/component/code/polygontest/entry/src/ohosTest/resources/base/media/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c GIT binary patch literal 6790 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"a"&&e<="z"||e>="A"&&e<="Z"||"$"===e||"_"===e||te.Unicode.ID_Start.test(e))}static isIdContinueChar(e){return"string"==typeof e&&(e>="a"&&e<="z"||e>="A"&&e<="Z"||e>="0"&&e<="9"||"$"===e||"_"===e||"‌"===e||"‍"===e||te.Unicode.ID_Continue.test(e))}static isDigitWithoutZero(e){return/[1-9]/.test(e)}static isDigit(e){return"string"==typeof e&&/[0-9]/.test(e)}static isHexDigit(e){return"string"==typeof e&&/[0-9A-Fa-f]/.test(e)}};var ne={},re={fromCallback:function(e){return Object.defineProperty((function(...t){if("function"!=typeof t[t.length-1])return new Promise(((n,r)=>{e.call(this,...t,((e,t)=>null!=e?r(e):n(t)))}));e.apply(this,t)}),"name",{value:e.name})},fromPromise:function(e){return Object.defineProperty((function(...t){const n=t[t.length-1];if("function"!=typeof n)return e.apply(this,t);e.apply(this,t.slice(0,-1)).then((e=>n(null,e)),n)}),"name",{value:e.name})}},ue=y.default,oe=process.cwd,ie=null,se=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){return ie||(ie=oe.call(process)),ie};try{process.cwd()}catch(e){}if("function"==typeof process.chdir){var ce=process.chdir;process.chdir=function(e){ie=null,ce.call(process,e)},Object.setPrototypeOf&&Object.setPrototypeOf(process.chdir,ce)}var ae=function(e){ue.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)&&function(e){e.lchmod=function(t,n,r){e.open(t,ue.O_WRONLY|ue.O_SYMLINK,n,(function(t,u){t?r&&r(t):e.fchmod(u,n,(function(t){e.close(u,(function(e){r&&r(t||e)}))}))}))},e.lchmodSync=function(t,n){var r,u=e.openSync(t,ue.O_WRONLY|ue.O_SYMLINK,n),o=!0;try{r=e.fchmodSync(u,n),o=!1}finally{if(o)try{e.closeSync(u)}catch(e){}else e.closeSync(u)}return r}}(e);e.lutimes||function(e){ue.hasOwnProperty("O_SYMLINK")&&e.futimes?(e.lutimes=function(t,n,r,u){e.open(t,ue.O_SYMLINK,(function(t,o){t?u&&u(t):e.futimes(o,n,r,(function(t){e.close(o,(function(e){u&&u(t||e)}))}))}))},e.lutimesSync=function(t,n,r){var u,o=e.openSync(t,ue.O_SYMLINK),i=!0;try{u=e.futimesSync(o,n,r),i=!1}finally{if(i)try{e.closeSync(o)}catch(e){}else e.closeSync(o)}return u}):e.futimes&&(e.lutimes=function(e,t,n,r){r&&process.nextTick(r)},e.lutimesSync=function(){})}(e);e.chown=r(e.chown),e.fchown=r(e.fchown),e.lchown=r(e.lchown),e.chmod=t(e.chmod),e.fchmod=t(e.fchmod),e.lchmod=t(e.lchmod),e.chownSync=u(e.chownSync),e.fchownSync=u(e.fchownSync),e.lchownSync=u(e.lchownSync),e.chmodSync=n(e.chmodSync),e.fchmodSync=n(e.fchmodSync),e.lchmodSync=n(e.lchmodSync),e.stat=o(e.stat),e.fstat=o(e.fstat),e.lstat=o(e.lstat),e.statSync=i(e.statSync),e.fstatSync=i(e.fstatSync),e.lstatSync=i(e.lstatSync),e.chmod&&!e.lchmod&&(e.lchmod=function(e,t,n){n&&process.nextTick(n)},e.lchmodSync=function(){});e.chown&&!e.lchown&&(e.lchown=function(e,t,n,r){r&&process.nextTick(r)},e.lchownSync=function(){});"win32"===se&&(e.rename="function"!=typeof e.rename?e.rename:function(t){function n(n,r,u){var o=Date.now(),i=0;t(n,r,(function s(c){if(c&&("EACCES"===c.code||"EPERM"===c.code||"EBUSY"===c.code)&&Date.now()-o<6e4)return setTimeout((function(){e.stat(r,(function(e,o){e&&"ENOENT"===e.code?t(n,r,s):u(c)}))}),i),void(i<100&&(i+=10));u&&u(c)}))}return Object.setPrototypeOf&&Object.setPrototypeOf(n,t),n}(e.rename));function t(t){return t?function(n,r,u){return t.call(e,n,r,(function(e){s(e)&&(e=null),u&&u.apply(this,arguments)}))}:t}function n(t){return t?function(n,r){try{return t.call(e,n,r)}catch(e){if(!s(e))throw e}}:t}function r(t){return t?function(n,r,u,o){return t.call(e,n,r,u,(function(e){s(e)&&(e=null),o&&o.apply(this,arguments)}))}:t}function u(t){return t?function(n,r,u){try{return t.call(e,n,r,u)}catch(e){if(!s(e))throw e}}:t}function o(t){return t?function(n,r,u){function o(e,t){t&&(t.uid<0&&(t.uid+=4294967296),t.gid<0&&(t.gid+=4294967296)),u&&u.apply(this,arguments)}return"function"==typeof r&&(u=r,r=null),r?t.call(e,n,r,o):t.call(e,n,o)}:t}function i(t){return t?function(n,r){var u=r?t.call(e,n,r):t.call(e,n);return u&&(u.uid<0&&(u.uid+=4294967296),u.gid<0&&(u.gid+=4294967296)),u}:t}function s(e){return!e||("ENOSYS"===e.code||!(process.getuid&&0===process.getuid()||"EINVAL"!==e.code&&"EPERM"!==e.code))}e.read="function"!=typeof e.read?e.read:function(t){function n(n,r,u,o,i,s){var c;if(s&&"function"==typeof s){var a=0;c=function(l,f,d){if(l&&"EAGAIN"===l.code&&a<10)return a++,t.call(e,n,r,u,o,i,c);s.apply(this,arguments)}}return t.call(e,n,r,u,o,i,c)}return Object.setPrototypeOf&&Object.setPrototypeOf(n,t),n}(e.read),e.readSync="function"!=typeof e.readSync?e.readSync:(c=e.readSync,function(t,n,r,u,o){for(var i=0;;)try{return c.call(e,t,n,r,u,o)}catch(e){if("EAGAIN"===e.code&&i<10){i++;continue}throw e}});var c};var le=C.default.Stream,fe=function(e){return{ReadStream:function t(n,r){if(!(this instanceof t))return new t(n,r);le.call(this);var u=this;this.path=n,this.fd=null,this.readable=!0,this.paused=!1,this.flags="r",this.mode=438,this.bufferSize=65536,r=r||{};for(var o=Object.keys(r),i=0,s=o.length;ithis.end)throw new Error("start must be <= end");this.pos=this.start}if(null!==this.fd)return void process.nextTick((function(){u._read()}));e.open(this.path,this.flags,this.mode,(function(e,t){if(e)return u.emit("error",e),void(u.readable=!1);u.fd=t,u.emit("open",t),u._read()}))},WriteStream:function t(n,r){if(!(this instanceof t))return new t(n,r);le.call(this),this.path=n,this.fd=null,this.writable=!0,this.flags="w",this.encoding="binary",this.mode=438,this.bytesWritten=0,r=r||{};for(var u=Object.keys(r),o=0,i=u.length;o= zero");this.pos=this.start}this.busy=!1,this._queue=[],null===this.fd&&(this._open=e.open,this._queue.push([this._open,this.path,this.flags,this.mode,void 0]),this.flush())}}};var de=function(e){if(null===e||"object"!=typeof e)return e;if(e instanceof Object)var t={__proto__:De(e)};else t=Object.create(null);return Object.getOwnPropertyNames(e).forEach((function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(e,n))})),t},De=Object.getPrototypeOf||function(e){return e.__proto__};var pe,Ee,me=D.default,he=ae,ye=fe,Ce=de,Fe=F.default;function ge(e,t){Object.defineProperty(e,pe,{get:function(){return t}})}"function"==typeof Symbol&&"function"==typeof Symbol.for?(pe=Symbol.for("graceful-fs.queue"),Ee=Symbol.for("graceful-fs.previous")):(pe="___graceful-fs.queue",Ee="___graceful-fs.previous");var Ae=function(){};if(Fe.debuglog?Ae=Fe.debuglog("gfs4"):/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")&&(Ae=function(){var e=Fe.format.apply(Fe,arguments);e="GFS4: "+e.split(/\n/).join("\nGFS4: "),console.error(e)}),!me[pe]){var ve=w[pe]||[];ge(me,ve),me.close=function(e){function t(t,n){return e.call(me,t,(function(e){e||_e(),"function"==typeof n&&n.apply(this,arguments)}))}return Object.defineProperty(t,Ee,{value:e}),t}(me.close),me.closeSync=function(e){function t(t){e.apply(me,arguments),_e()}return Object.defineProperty(t,Ee,{value:e}),t}(me.closeSync),/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")&&process.on("exit",(function(){Ae(me[pe]),g.default.equal(me[pe].length,0)}))}w[pe]||ge(w,me[pe]);var Se,we=Oe(Ce(me));function Oe(e){he(e),e.gracefulify=Oe,e.createReadStream=function(t,n){return new e.ReadStream(t,n)},e.createWriteStream=function(t,n){return new e.WriteStream(t,n)};var t=e.readFile;e.readFile=function(e,n,r){"function"==typeof n&&(r=n,n=null);return function e(n,r,u,o){return t(n,r,(function(t){!t||"EMFILE"!==t.code&&"ENFILE"!==t.code?"function"==typeof u&&u.apply(this,arguments):be([e,[n,r,u],t,o||Date.now(),Date.now()])}))}(e,n,r)};var n=e.writeFile;e.writeFile=function(e,t,r,u){"function"==typeof r&&(u=r,r=null);return function e(t,r,u,o,i){return n(t,r,u,(function(n){!n||"EMFILE"!==n.code&&"ENFILE"!==n.code?"function"==typeof o&&o.apply(this,arguments):be([e,[t,r,u,o],n,i||Date.now(),Date.now()])}))}(e,t,r,u)};var r=e.appendFile;r&&(e.appendFile=function(e,t,n,u){"function"==typeof n&&(u=n,n=null);return function e(t,n,u,o,i){return r(t,n,u,(function(r){!r||"EMFILE"!==r.code&&"ENFILE"!==r.code?"function"==typeof o&&o.apply(this,arguments):be([e,[t,n,u,o],r,i||Date.now(),Date.now()])}))}(e,t,n,u)});var u=e.copyFile;u&&(e.copyFile=function(e,t,n,r){"function"==typeof n&&(r=n,n=0);return function e(t,n,r,o,i){return u(t,n,r,(function(u){!u||"EMFILE"!==u.code&&"ENFILE"!==u.code?"function"==typeof o&&o.apply(this,arguments):be([e,[t,n,r,o],u,i||Date.now(),Date.now()])}))}(e,t,n,r)});var o=e.readdir;e.readdir=function(e,t,n){"function"==typeof t&&(n=t,t=null);var r=i.test(process.version)?function(e,t,n,r){return o(e,u(e,t,n,r))}:function(e,t,n,r){return o(e,t,u(e,t,n,r))};return r(e,t,n);function u(e,t,n,u){return function(o,i){!o||"EMFILE"!==o.code&&"ENFILE"!==o.code?(i&&i.sort&&i.sort(),"function"==typeof n&&n.call(this,o,i)):be([r,[e,t,n],o,u||Date.now(),Date.now()])}}};var i=/^v[0-5]\./;if("v0.8"===process.version.substr(0,4)){var s=ye(e);d=s.ReadStream,D=s.WriteStream}var c=e.ReadStream;c&&(d.prototype=Object.create(c.prototype),d.prototype.open=function(){var e=this;E(e.path,e.flags,e.mode,(function(t,n){t?(e.autoClose&&e.destroy(),e.emit("error",t)):(e.fd=n,e.emit("open",n),e.read())}))});var a=e.WriteStream;a&&(D.prototype=Object.create(a.prototype),D.prototype.open=function(){var e=this;E(e.path,e.flags,e.mode,(function(t,n){t?(e.destroy(),e.emit("error",t)):(e.fd=n,e.emit("open",n))}))}),Object.defineProperty(e,"ReadStream",{get:function(){return d},set:function(e){d=e},enumerable:!0,configurable:!0}),Object.defineProperty(e,"WriteStream",{get:function(){return D},set:function(e){D=e},enumerable:!0,configurable:!0});var l=d;Object.defineProperty(e,"FileReadStream",{get:function(){return l},set:function(e){l=e},enumerable:!0,configurable:!0});var f=D;function d(e,t){return this instanceof d?(c.apply(this,arguments),this):d.apply(Object.create(d.prototype),arguments)}function D(e,t){return this instanceof D?(a.apply(this,arguments),this):D.apply(Object.create(D.prototype),arguments)}Object.defineProperty(e,"FileWriteStream",{get:function(){return f},set:function(e){f=e},enumerable:!0,configurable:!0});var p=e.open;function E(e,t,n,r){return"function"==typeof n&&(r=n,n=null),function e(t,n,r,u,o){return p(t,n,r,(function(i,s){!i||"EMFILE"!==i.code&&"ENFILE"!==i.code?"function"==typeof u&&u.apply(this,arguments):be([e,[t,n,r,u],i,o||Date.now(),Date.now()])}))}(e,t,n,r)}return e.open=E,e}function be(e){Ae("ENQUEUE",e[0].name,e[1]),me[pe].push(e),Be()}function _e(){for(var e=Date.now(),t=0;t2&&(me[pe][t][3]=e,me[pe][t][4]=e);Be()}function Be(){if(clearTimeout(Se),Se=void 0,0!==me[pe].length){var e=me[pe].shift(),t=e[0],n=e[1],r=e[2],u=e[3],o=e[4];if(void 0===u)Ae("RETRY",t.name,n),t.apply(null,n);else if(Date.now()-u>=6e4){Ae("TIMEOUT",t.name,n);var i=n.pop();"function"==typeof i&&i.call(null,r)}else{var s=Date.now()-o,c=Math.max(o-u,1);s>=Math.min(1.2*c,100)?(Ae("RETRY",t.name,n),t.apply(null,n.concat([u]))):me[pe].push(e)}void 0===Se&&(Se=setTimeout(Be,0))}}process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!me.__patched&&(we=Oe(me),me.__patched=!0),function(e){const t=re.fromCallback,n=we,r=["access","appendFile","chmod","chown","close","copyFile","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchmod","lchown","link","lstat","mkdir","mkdtemp","open","opendir","readdir","readFile","readlink","realpath","rename","rm","rmdir","stat","symlink","truncate","unlink","utimes","writeFile"].filter((e=>"function"==typeof n[e]));Object.assign(e,n),r.forEach((r=>{e[r]=t(n[r])})),e.realpath.native=t(n.realpath.native),e.exists=function(e,t){return"function"==typeof t?n.exists(e,t):new Promise((t=>n.exists(e,t)))},e.read=function(e,t,r,u,o,i){return"function"==typeof i?n.read(e,t,r,u,o,i):new Promise(((i,s)=>{n.read(e,t,r,u,o,((e,t,n)=>{if(e)return s(e);i({bytesRead:t,buffer:n})}))}))},e.write=function(e,t,...r){return"function"==typeof r[r.length-1]?n.write(e,t,...r):new Promise(((u,o)=>{n.write(e,t,...r,((e,t,n)=>{if(e)return o(e);u({bytesWritten:t,buffer:n})}))}))},"function"==typeof n.writev&&(e.writev=function(e,t,...r){return"function"==typeof r[r.length-1]?n.writev(e,t,...r):new Promise(((u,o)=>{n.writev(e,t,...r,((e,t,n)=>{if(e)return o(e);u({bytesWritten:t,buffers:n})}))}))})}(ne);var Pe={},ke={};const xe=p.default;ke.checkPath=function(e){if("win32"===process.platform){if(/[<>:"|?*]/.test(e.replace(xe.parse(e).root,""))){const t=new Error(`Path contains invalid characters: ${e}`);throw t.code="EINVAL",t}}};const Ne=ne,{checkPath:Ie}=ke,Te=e=>"number"==typeof e?e:{mode:511,...e}.mode;Pe.makeDir=async(e,t)=>(Ie(e),Ne.mkdir(e,{mode:Te(t),recursive:!0})),Pe.makeDirSync=(e,t)=>(Ie(e),Ne.mkdirSync(e,{mode:Te(t),recursive:!0}));const Re=re.fromPromise,{makeDir:Me,makeDirSync:Le}=Pe,je=Re(Me);var $e={mkdirs:je,mkdirsSync:Le,mkdirp:je,mkdirpSync:Le,ensureDir:je,ensureDirSync:Le};const He=re.fromPromise,Je=ne;var Ge={pathExists:He((function(e){return Je.access(e).then((()=>!0)).catch((()=>!1))})),pathExistsSync:Je.existsSync};const Ve=we;var Ue=function(e,t,n,r){Ve.open(e,"r+",((e,u)=>{if(e)return r(e);Ve.futimes(u,t,n,(e=>{Ve.close(u,(t=>{r&&r(e||t)}))}))}))},We=function(e,t,n){const r=Ve.openSync(e,"r+");return Ve.futimesSync(r,t,n),Ve.closeSync(r)};const ze=ne,Ke=p.default,qe=F.default;function Ye(e,t,n){const r=n.dereference?e=>ze.stat(e,{bigint:!0}):e=>ze.lstat(e,{bigint:!0});return Promise.all([r(e),r(t).catch((e=>{if("ENOENT"===e.code)return null;throw e}))]).then((([e,t])=>({srcStat:e,destStat:t})))}function Xe(e,t){return t.ino&&t.dev&&t.ino===e.ino&&t.dev===e.dev}function Ze(e,t){const n=Ke.resolve(e).split(Ke.sep).filter((e=>e)),r=Ke.resolve(t).split(Ke.sep).filter((e=>e));return n.reduce(((e,t,n)=>e&&r[n]===t),!0)}function Qe(e,t,n){return`Cannot ${n} '${e}' to a subdirectory of itself, '${t}'.`}var et={checkPaths:function(e,t,n,r,u){qe.callbackify(Ye)(e,t,r,((r,o)=>{if(r)return u(r);const{srcStat:i,destStat:s}=o;if(s){if(Xe(i,s)){const r=Ke.basename(e),o=Ke.basename(t);return"move"===n&&r!==o&&r.toLowerCase()===o.toLowerCase()?u(null,{srcStat:i,destStat:s,isChangingCase:!0}):u(new Error("Source and destination must not be the same."))}if(i.isDirectory()&&!s.isDirectory())return u(new Error(`Cannot overwrite non-directory '${t}' with directory '${e}'.`));if(!i.isDirectory()&&s.isDirectory())return u(new Error(`Cannot overwrite directory '${t}' with non-directory '${e}'.`))}return i.isDirectory()&&Ze(e,t)?u(new Error(Qe(e,t,n))):u(null,{srcStat:i,destStat:s})}))},checkPathsSync:function(e,t,n,r){const{srcStat:u,destStat:o}=function(e,t,n){let r;const u=n.dereference?e=>ze.statSync(e,{bigint:!0}):e=>ze.lstatSync(e,{bigint:!0}),o=u(e);try{r=u(t)}catch(e){if("ENOENT"===e.code)return{srcStat:o,destStat:null};throw e}return{srcStat:o,destStat:r}}(e,t,r);if(o){if(Xe(u,o)){const r=Ke.basename(e),i=Ke.basename(t);if("move"===n&&r!==i&&r.toLowerCase()===i.toLowerCase())return{srcStat:u,destStat:o,isChangingCase:!0};throw new Error("Source and destination must not be the same.")}if(u.isDirectory()&&!o.isDirectory())throw new Error(`Cannot overwrite non-directory '${t}' with directory '${e}'.`);if(!u.isDirectory()&&o.isDirectory())throw new Error(`Cannot overwrite directory '${t}' with non-directory '${e}'.`)}if(u.isDirectory()&&Ze(e,t))throw new Error(Qe(e,t,n));return{srcStat:u,destStat:o}},checkParentPaths:function e(t,n,r,u,o){const i=Ke.resolve(Ke.dirname(t)),s=Ke.resolve(Ke.dirname(r));if(s===i||s===Ke.parse(s).root)return o();ze.stat(s,{bigint:!0},((i,c)=>i?"ENOENT"===i.code?o():o(i):Xe(n,c)?o(new Error(Qe(t,r,u))):e(t,n,s,u,o)))},checkParentPathsSync:function e(t,n,r,u){const o=Ke.resolve(Ke.dirname(t)),i=Ke.resolve(Ke.dirname(r));if(i===o||i===Ke.parse(i).root)return;let s;try{s=ze.statSync(i,{bigint:!0})}catch(e){if("ENOENT"===e.code)return;throw e}if(Xe(n,s))throw new Error(Qe(t,r,u));return e(t,n,i,u)},isSrcSubdir:Ze,areIdentical:Xe};const tt=we,nt=p.default,rt=$e.mkdirs,ut=Ge.pathExists,ot=Ue,it=et;function st(e,t,n,r,u){const o=nt.dirname(n);ut(o,((i,s)=>i?u(i):s?at(e,t,n,r,u):void rt(o,(o=>o?u(o):at(e,t,n,r,u)))))}function ct(e,t,n,r,u,o){Promise.resolve(u.filter(n,r)).then((i=>i?e(t,n,r,u,o):o()),(e=>o(e)))}function at(e,t,n,r,u){(r.dereference?tt.stat:tt.lstat)(t,((o,i)=>o?u(o):i.isDirectory()?function(e,t,n,r,u,o){return t?Dt(n,r,u,o):function(e,t,n,r,u){tt.mkdir(n,(o=>{if(o)return u(o);Dt(t,n,r,(t=>t?u(t):dt(n,e,u)))}))}(e.mode,n,r,u,o)}(i,e,t,n,r,u):i.isFile()||i.isCharacterDevice()||i.isBlockDevice()?function(e,t,n,r,u,o){return t?function(e,t,n,r,u){if(!r.overwrite)return r.errorOnExist?u(new Error(`'${n}' already exists`)):u();tt.unlink(n,(o=>o?u(o):lt(e,t,n,r,u)))}(e,n,r,u,o):lt(e,n,r,u,o)}(i,e,t,n,r,u):i.isSymbolicLink()?function(e,t,n,r,u){tt.readlink(t,((t,o)=>t?u(t):(r.dereference&&(o=nt.resolve(process.cwd(),o)),e?void tt.readlink(n,((t,i)=>t?"EINVAL"===t.code||"UNKNOWN"===t.code?tt.symlink(o,n,u):u(t):(r.dereference&&(i=nt.resolve(process.cwd(),i)),it.isSrcSubdir(o,i)?u(new Error(`Cannot copy '${o}' to a subdirectory of itself, '${i}'.`)):e.isDirectory()&&it.isSrcSubdir(i,o)?u(new Error(`Cannot overwrite '${i}' with '${o}'.`)):function(e,t,n){tt.unlink(t,(r=>r?n(r):tt.symlink(e,t,n)))}(o,n,u)))):tt.symlink(o,n,u))))}(e,t,n,r,u):i.isSocket()?u(new Error(`Cannot copy a socket file: ${t}`)):i.isFIFO()?u(new Error(`Cannot copy a FIFO pipe: ${t}`)):u(new Error(`Unknown file: ${t}`))))}function lt(e,t,n,r,u){tt.copyFile(t,n,(o=>o?u(o):r.preserveTimestamps?function(e,t,n,r){if(function(e){return 0==(128&e)}(e))return function(e,t,n){return dt(e,128|t,n)}(n,e,(u=>u?r(u):ft(e,t,n,r)));return ft(e,t,n,r)}(e.mode,t,n,u):dt(n,e.mode,u)))}function ft(e,t,n,r){!function(e,t,n){tt.stat(e,((e,r)=>e?n(e):ot(t,r.atime,r.mtime,n)))}(t,n,(t=>t?r(t):dt(n,e,r)))}function dt(e,t,n){return tt.chmod(e,t,n)}function Dt(e,t,n,r){tt.readdir(e,((u,o)=>u?r(u):pt(o,e,t,n,r)))}function pt(e,t,n,r,u){const o=e.pop();return o?function(e,t,n,r,u,o){const i=nt.join(n,t),s=nt.join(r,t);it.checkPaths(i,s,"copy",u,((t,c)=>{if(t)return o(t);const{destStat:a}=c;!function(e,t,n,r,u){r.filter?ct(at,e,t,n,r,u):at(e,t,n,r,u)}(a,i,s,u,(t=>t?o(t):pt(e,n,r,u,o)))}))}(e,o,t,n,r,u):u()}var Et=function(e,t,n,r){"function"!=typeof n||r?"function"==typeof n&&(n={filter:n}):(r=n,n={}),r=r||function(){},(n=n||{}).clobber=!("clobber"in n)||!!n.clobber,n.overwrite="overwrite"in n?!!n.overwrite:n.clobber,n.preserveTimestamps&&"ia32"===process.arch&&console.warn("fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269"),it.checkPaths(e,t,"copy",n,((u,o)=>{if(u)return r(u);const{srcStat:i,destStat:s}=o;it.checkParentPaths(e,i,t,"copy",(u=>u?r(u):n.filter?ct(st,s,e,t,n,r):st(s,e,t,n,r)))}))};const mt=we,ht=p.default,yt=$e.mkdirsSync,Ct=We,Ft=et;function gt(e,t,n,r){const u=(r.dereference?mt.statSync:mt.lstatSync)(t);if(u.isDirectory())return function(e,t,n,r,u){return t?St(n,r,u):function(e,t,n,r){return mt.mkdirSync(n),St(t,n,r),vt(n,e)}(e.mode,n,r,u)}(u,e,t,n,r);if(u.isFile()||u.isCharacterDevice()||u.isBlockDevice())return function(e,t,n,r,u){return t?function(e,t,n,r){if(r.overwrite)return mt.unlinkSync(n),At(e,t,n,r);if(r.errorOnExist)throw new Error(`'${n}' already exists`)}(e,n,r,u):At(e,n,r,u)}(u,e,t,n,r);if(u.isSymbolicLink())return function(e,t,n,r){let u=mt.readlinkSync(t);r.dereference&&(u=ht.resolve(process.cwd(),u));if(e){let e;try{e=mt.readlinkSync(n)}catch(e){if("EINVAL"===e.code||"UNKNOWN"===e.code)return mt.symlinkSync(u,n);throw e}if(r.dereference&&(e=ht.resolve(process.cwd(),e)),Ft.isSrcSubdir(u,e))throw new Error(`Cannot copy '${u}' to a subdirectory of itself, '${e}'.`);if(mt.statSync(n).isDirectory()&&Ft.isSrcSubdir(e,u))throw new Error(`Cannot overwrite '${e}' with '${u}'.`);return function(e,t){return mt.unlinkSync(t),mt.symlinkSync(e,t)}(u,n)}return mt.symlinkSync(u,n)}(e,t,n,r);if(u.isSocket())throw new Error(`Cannot copy a socket file: ${t}`);if(u.isFIFO())throw new Error(`Cannot copy a FIFO pipe: ${t}`);throw new Error(`Unknown file: ${t}`)}function At(e,t,n,r){return mt.copyFileSync(t,n),r.preserveTimestamps&&function(e,t,n){(function(e){return 0==(128&e)})(e)&&function(e,t){vt(e,128|t)}(n,e);(function(e,t){const n=mt.statSync(e);Ct(t,n.atime,n.mtime)})(t,n)}(e.mode,t,n),vt(n,e.mode)}function vt(e,t){return mt.chmodSync(e,t)}function St(e,t,n){mt.readdirSync(e).forEach((r=>function(e,t,n,r){const u=ht.join(t,e),o=ht.join(n,e),{destStat:i}=Ft.checkPathsSync(u,o,"copy",r);return function(e,t,n,r){if(!r.filter||r.filter(t,n))return gt(e,t,n,r)}(i,u,o,r)}(r,e,t,n)))}var wt=function(e,t,n){"function"==typeof n&&(n={filter:n}),(n=n||{}).clobber=!("clobber"in n)||!!n.clobber,n.overwrite="overwrite"in n?!!n.overwrite:n.clobber,n.preserveTimestamps&&"ia32"===process.arch&&console.warn("fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269");const{srcStat:r,destStat:u}=Ft.checkPathsSync(e,t,"copy",n);return Ft.checkParentPathsSync(e,r,t,"copy"),function(e,t,n,r){if(r.filter&&!r.filter(t,n))return;const u=ht.dirname(n);mt.existsSync(u)||yt(u);return gt(e,t,n,r)}(u,e,t,n)};var Ot={copy:(0,re.fromCallback)(Et),copySync:wt};const bt=we,_t=p.default,Bt=g.default,Pt="win32"===process.platform;function kt(e){["unlink","chmod","stat","lstat","rmdir","readdir"].forEach((t=>{e[t]=e[t]||bt[t],e[t+="Sync"]=e[t]||bt[t]})),e.maxBusyTries=e.maxBusyTries||3}function xt(e,t,n){let r=0;"function"==typeof t&&(n=t,t={}),Bt(e,"rimraf: missing path"),Bt.strictEqual(typeof e,"string","rimraf: path should be a string"),Bt.strictEqual(typeof n,"function","rimraf: callback function required"),Bt(t,"rimraf: invalid options argument provided"),Bt.strictEqual(typeof t,"object","rimraf: options should be object"),kt(t),Nt(e,t,(function u(o){if(o){if(("EBUSY"===o.code||"ENOTEMPTY"===o.code||"EPERM"===o.code)&&rNt(e,t,u)),100*r)}"ENOENT"===o.code&&(o=null)}n(o)}))}function Nt(e,t,n){Bt(e),Bt(t),Bt("function"==typeof n),t.lstat(e,((r,u)=>r&&"ENOENT"===r.code?n(null):r&&"EPERM"===r.code&&Pt?It(e,t,r,n):u&&u.isDirectory()?Rt(e,t,r,n):void t.unlink(e,(r=>{if(r){if("ENOENT"===r.code)return n(null);if("EPERM"===r.code)return Pt?It(e,t,r,n):Rt(e,t,r,n);if("EISDIR"===r.code)return Rt(e,t,r,n)}return n(r)}))))}function It(e,t,n,r){Bt(e),Bt(t),Bt("function"==typeof r),t.chmod(e,438,(u=>{u?r("ENOENT"===u.code?null:n):t.stat(e,((u,o)=>{u?r("ENOENT"===u.code?null:n):o.isDirectory()?Rt(e,t,n,r):t.unlink(e,r)}))}))}function Tt(e,t,n){let r;Bt(e),Bt(t);try{t.chmodSync(e,438)}catch(e){if("ENOENT"===e.code)return;throw n}try{r=t.statSync(e)}catch(e){if("ENOENT"===e.code)return;throw n}r.isDirectory()?Lt(e,t,n):t.unlinkSync(e)}function Rt(e,t,n,r){Bt(e),Bt(t),Bt("function"==typeof r),t.rmdir(e,(u=>{!u||"ENOTEMPTY"!==u.code&&"EEXIST"!==u.code&&"EPERM"!==u.code?u&&"ENOTDIR"===u.code?r(n):r(u):function(e,t,n){Bt(e),Bt(t),Bt("function"==typeof n),t.readdir(e,((r,u)=>{if(r)return n(r);let o,i=u.length;if(0===i)return t.rmdir(e,n);u.forEach((r=>{xt(_t.join(e,r),t,(r=>{if(!o)return r?n(o=r):void(0==--i&&t.rmdir(e,n))}))}))}))}(e,t,r)}))}function Mt(e,t){let n;kt(t=t||{}),Bt(e,"rimraf: missing path"),Bt.strictEqual(typeof e,"string","rimraf: path should be a string"),Bt(t,"rimraf: missing options"),Bt.strictEqual(typeof t,"object","rimraf: options should be object");try{n=t.lstatSync(e)}catch(n){if("ENOENT"===n.code)return;"EPERM"===n.code&&Pt&&Tt(e,t,n)}try{n&&n.isDirectory()?Lt(e,t,null):t.unlinkSync(e)}catch(n){if("ENOENT"===n.code)return;if("EPERM"===n.code)return Pt?Tt(e,t,n):Lt(e,t,n);if("EISDIR"!==n.code)throw n;Lt(e,t,n)}}function Lt(e,t,n){Bt(e),Bt(t);try{t.rmdirSync(e)}catch(r){if("ENOTDIR"===r.code)throw n;if("ENOTEMPTY"===r.code||"EEXIST"===r.code||"EPERM"===r.code)!function(e,t){if(Bt(e),Bt(t),t.readdirSync(e).forEach((n=>Mt(_t.join(e,n),t))),!Pt){return t.rmdirSync(e,t)}{const n=Date.now();do{try{return t.rmdirSync(e,t)}catch{}}while(Date.now()-n<500)}}(e,t);else if("ENOENT"!==r.code)throw r}}var jt=xt;xt.sync=Mt;const $t=we,Ht=re.fromCallback,Jt=jt;var Gt={remove:Ht((function(e,t){if($t.rm)return $t.rm(e,{recursive:!0,force:!0},t);Jt(e,t)})),removeSync:function(e){if($t.rmSync)return $t.rmSync(e,{recursive:!0,force:!0});Jt.sync(e)}};const Vt=re.fromPromise,Ut=ne,Wt=p.default,zt=$e,Kt=Gt,qt=Vt((async function(e){let t;try{t=await Ut.readdir(e)}catch{return zt.mkdirs(e)}return Promise.all(t.map((t=>Kt.remove(Wt.join(e,t)))))}));function Yt(e){let t;try{t=Ut.readdirSync(e)}catch{return zt.mkdirsSync(e)}t.forEach((t=>{t=Wt.join(e,t),Kt.removeSync(t)}))}var Xt={emptyDirSync:Yt,emptydirSync:Yt,emptyDir:qt,emptydir:qt};const Zt=re.fromCallback,Qt=p.default,en=we,tn=$e;var nn={createFile:Zt((function(e,t){function n(){en.writeFile(e,"",(e=>{if(e)return t(e);t()}))}en.stat(e,((r,u)=>{if(!r&&u.isFile())return t();const o=Qt.dirname(e);en.stat(o,((e,r)=>{if(e)return"ENOENT"===e.code?tn.mkdirs(o,(e=>{if(e)return t(e);n()})):t(e);r.isDirectory()?n():en.readdir(o,(e=>{if(e)return t(e)}))}))}))})),createFileSync:function(e){let t;try{t=en.statSync(e)}catch{}if(t&&t.isFile())return;const n=Qt.dirname(e);try{en.statSync(n).isDirectory()||en.readdirSync(n)}catch(e){if(!e||"ENOENT"!==e.code)throw e;tn.mkdirsSync(n)}en.writeFileSync(e,"")}};const rn=re.fromCallback,un=p.default,on=we,sn=$e,cn=Ge.pathExists,{areIdentical:an}=et;var ln={createLink:rn((function(e,t,n){function r(e,t){on.link(e,t,(e=>{if(e)return n(e);n(null)}))}on.lstat(t,((u,o)=>{on.lstat(e,((u,i)=>{if(u)return u.message=u.message.replace("lstat","ensureLink"),n(u);if(o&&an(i,o))return n(null);const s=un.dirname(t);cn(s,((u,o)=>u?n(u):o?r(e,t):void sn.mkdirs(s,(u=>{if(u)return n(u);r(e,t)}))))}))}))})),createLinkSync:function(e,t){let n;try{n=on.lstatSync(t)}catch{}try{const t=on.lstatSync(e);if(n&&an(t,n))return}catch(e){throw e.message=e.message.replace("lstat","ensureLink"),e}const r=un.dirname(t);return on.existsSync(r)||sn.mkdirsSync(r),on.linkSync(e,t)}};const fn=p.default,dn=we,Dn=Ge.pathExists;var pn={symlinkPaths:function(e,t,n){if(fn.isAbsolute(e))return dn.lstat(e,(t=>t?(t.message=t.message.replace("lstat","ensureSymlink"),n(t)):n(null,{toCwd:e,toDst:e})));{const r=fn.dirname(t),u=fn.join(r,e);return Dn(u,((t,o)=>t?n(t):o?n(null,{toCwd:u,toDst:e}):dn.lstat(e,(t=>t?(t.message=t.message.replace("lstat","ensureSymlink"),n(t)):n(null,{toCwd:e,toDst:fn.relative(r,e)})))))}},symlinkPathsSync:function(e,t){let n;if(fn.isAbsolute(e)){if(n=dn.existsSync(e),!n)throw new Error("absolute srcpath does not exist");return{toCwd:e,toDst:e}}{const r=fn.dirname(t),u=fn.join(r,e);if(n=dn.existsSync(u),n)return{toCwd:u,toDst:e};if(n=dn.existsSync(e),!n)throw new Error("relative srcpath does not exist");return{toCwd:e,toDst:fn.relative(r,e)}}}};const En=we;var mn={symlinkType:function(e,t,n){if(n="function"==typeof t?t:n,t="function"!=typeof t&&t)return n(null,t);En.lstat(e,((e,r)=>{if(e)return n(null,"file");t=r&&r.isDirectory()?"dir":"file",n(null,t)}))},symlinkTypeSync:function(e,t){let n;if(t)return t;try{n=En.lstatSync(e)}catch{return"file"}return n&&n.isDirectory()?"dir":"file"}};const hn=re.fromCallback,yn=p.default,Cn=ne,Fn=$e.mkdirs,gn=$e.mkdirsSync,An=pn.symlinkPaths,vn=pn.symlinkPathsSync,Sn=mn.symlinkType,wn=mn.symlinkTypeSync,On=Ge.pathExists,{areIdentical:bn}=et;function _n(e,t,n,r){An(e,t,((u,o)=>{if(u)return r(u);e=o.toDst,Sn(o.toCwd,n,((n,u)=>{if(n)return r(n);const o=yn.dirname(t);On(o,((n,i)=>n?r(n):i?Cn.symlink(e,t,u,r):void Fn(o,(n=>{if(n)return r(n);Cn.symlink(e,t,u,r)}))))}))}))}var Bn={createSymlink:hn((function(e,t,n,r){r="function"==typeof n?n:r,n="function"!=typeof n&&n,Cn.lstat(t,((u,o)=>{!u&&o.isSymbolicLink()?Promise.all([Cn.stat(e),Cn.stat(t)]).then((([u,o])=>{if(bn(u,o))return r(null);_n(e,t,n,r)})):_n(e,t,n,r)}))})),createSymlinkSync:function(e,t,n){let r;try{r=Cn.lstatSync(t)}catch{}if(r&&r.isSymbolicLink()){const n=Cn.statSync(e),r=Cn.statSync(t);if(bn(n,r))return}const u=vn(e,t);e=u.toDst,n=wn(u.toCwd,n);const o=yn.dirname(t);return Cn.existsSync(o)||gn(o),Cn.symlinkSync(e,t,n)}};const{createFile:Pn,createFileSync:kn}=nn,{createLink:xn,createLinkSync:Nn}=ln,{createSymlink:In,createSymlinkSync:Tn}=Bn;var Rn={createFile:Pn,createFileSync:kn,ensureFile:Pn,ensureFileSync:kn,createLink:xn,createLinkSync:Nn,ensureLink:xn,ensureLinkSync:Nn,createSymlink:In,createSymlinkSync:Tn,ensureSymlink:In,ensureSymlinkSync:Tn};var Mn={stringify:function(e,{EOL:t="\n",finalEOL:n=!0,replacer:r=null,spaces:u}={}){const o=n?t:"";return JSON.stringify(e,r,u).replace(/\n/g,t)+o},stripBom:function(e){return Buffer.isBuffer(e)&&(e=e.toString("utf8")),e.replace(/^\uFEFF/,"")}};let Ln;try{Ln=we}catch(e){Ln=D.default}const jn=re,{stringify:$n,stripBom:Hn}=Mn;const Jn=jn.fromPromise((async function(e,t={}){"string"==typeof t&&(t={encoding:t});const n=t.fs||Ln,r=!("throws"in t)||t.throws;let u,o=await jn.fromCallback(n.readFile)(e,t);o=Hn(o);try{u=JSON.parse(o,t?t.reviver:null)}catch(t){if(r)throw t.message=`${e}: ${t.message}`,t;return null}return u}));const Gn=jn.fromPromise((async function(e,t,n={}){const r=n.fs||Ln,u=$n(t,n);await jn.fromCallback(r.writeFile)(e,u,n)}));const Vn={readFile:Jn,readFileSync:function(e,t={}){"string"==typeof t&&(t={encoding:t});const n=t.fs||Ln,r=!("throws"in t)||t.throws;try{let r=n.readFileSync(e,t);return r=Hn(r),JSON.parse(r,t.reviver)}catch(t){if(r)throw t.message=`${e}: ${t.message}`,t;return null}},writeFile:Gn,writeFileSync:function(e,t,n={}){const r=n.fs||Ln,u=$n(t,n);return r.writeFileSync(e,u,n)}};var Un={readJson:Vn.readFile,readJsonSync:Vn.readFileSync,writeJson:Vn.writeFile,writeJsonSync:Vn.writeFileSync};const Wn=re.fromCallback,zn=we,Kn=p.default,qn=$e,Yn=Ge.pathExists;var Xn={outputFile:Wn((function(e,t,n,r){"function"==typeof n&&(r=n,n="utf8");const u=Kn.dirname(e);Yn(u,((o,i)=>o?r(o):i?zn.writeFile(e,t,n,r):void qn.mkdirs(u,(u=>{if(u)return r(u);zn.writeFile(e,t,n,r)}))))})),outputFileSync:function(e,...t){const n=Kn.dirname(e);if(zn.existsSync(n))return zn.writeFileSync(e,...t);qn.mkdirsSync(n),zn.writeFileSync(e,...t)}};const{stringify:Zn}=Mn,{outputFile:Qn}=Xn;var er=async function(e,t,n={}){const r=Zn(t,n);await Qn(e,r,n)};const{stringify:tr}=Mn,{outputFileSync:nr}=Xn;var rr=function(e,t,n){const r=tr(t,n);nr(e,r,n)};const ur=re.fromPromise,or=Un;or.outputJson=ur(er),or.outputJsonSync=rr,or.outputJSON=or.outputJson,or.outputJSONSync=or.outputJsonSync,or.writeJSON=or.writeJson,or.writeJSONSync=or.writeJsonSync,or.readJSON=or.readJson,or.readJSONSync=or.readJsonSync;var ir=or;const sr=we,cr=p.default,ar=Ot.copy,lr=Gt.remove,fr=$e.mkdirp,dr=Ge.pathExists,Dr=et;function pr(e,t,n,r,u){return r?Er(e,t,n,u):n?lr(t,(r=>r?u(r):Er(e,t,n,u))):void dr(t,((r,o)=>r?u(r):o?u(new Error("dest already exists.")):Er(e,t,n,u)))}function Er(e,t,n,r){sr.rename(e,t,(u=>u?"EXDEV"!==u.code?r(u):function(e,t,n,r){const u={overwrite:n,errorOnExist:!0};ar(e,t,u,(t=>t?r(t):lr(e,r)))}(e,t,n,r):r()))}var mr=function(e,t,n,r){"function"==typeof n&&(r=n,n={});const u=n.overwrite||n.clobber||!1;Dr.checkPaths(e,t,"move",n,((n,o)=>{if(n)return r(n);const{srcStat:i,isChangingCase:s=!1}=o;Dr.checkParentPaths(e,i,t,"move",(n=>n?r(n):function(e){const t=cr.dirname(e);return cr.parse(t).root===t}(t)?pr(e,t,u,s,r):void fr(cr.dirname(t),(n=>n?r(n):pr(e,t,u,s,r)))))}))};const hr=we,yr=p.default,Cr=Ot.copySync,Fr=Gt.removeSync,gr=$e.mkdirpSync,Ar=et;function vr(e,t,n){try{hr.renameSync(e,t)}catch(r){if("EXDEV"!==r.code)throw r;return function(e,t,n){const r={overwrite:n,errorOnExist:!0};return Cr(e,t,r),Fr(e)}(e,t,n)}}var Sr=function(e,t,n){const r=(n=n||{}).overwrite||n.clobber||!1,{srcStat:u,isChangingCase:o=!1}=Ar.checkPathsSync(e,t,"move",n);return Ar.checkParentPathsSync(e,u,t,"move"),function(e){const t=yr.dirname(e);return yr.parse(t).root===t}(t)||gr(yr.dirname(t)),function(e,t,n,r){if(r)return vr(e,t,n);if(n)return Fr(t),vr(e,t,n);if(hr.existsSync(t))throw new Error("dest already exists.");return vr(e,t,n)}(e,t,r,o)};var wr,Or,br,_r,Br,Pr={move:(0,re.fromCallback)(mr),moveSync:Sr},kr={...ne,...Ot,...Xt,...Rn,...ir,...$e,...Pr,...Xn,...Ge,...Gt},xr={},Nr={exports:{}},Ir={exports:{}};function Tr(){if(Or)return wr;Or=1;var e=1e3,t=60*e,n=60*t,r=24*n,u=7*r,o=365.25*r;function i(e,t,n,r){var u=t>=1.5*n;return Math.round(e/n)+" "+r+(u?"s":"")}return wr=function(s,c){c=c||{};var a=typeof s;if("string"===a&&s.length>0)return function(i){if((i=String(i)).length>100)return;var s=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(i);if(!s)return;var c=parseFloat(s[1]);switch((s[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return c*o;case"weeks":case"week":case"w":return c*u;case"days":case"day":case"d":return c*r;case"hours":case"hour":case"hrs":case"hr":case"h":return c*n;case"minutes":case"minute":case"mins":case"min":case"m":return c*t;case"seconds":case"second":case"secs":case"sec":case"s":return c*e;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return c;default:return}}(s);if("number"===a&&isFinite(s))return c.long?function(u){var o=Math.abs(u);if(o>=r)return i(u,o,r,"day");if(o>=n)return i(u,o,n,"hour");if(o>=t)return i(u,o,t,"minute");if(o>=e)return i(u,o,e,"second");return u+" ms"}(s):function(u){var o=Math.abs(u);if(o>=r)return Math.round(u/r)+"d";if(o>=n)return Math.round(u/n)+"h";if(o>=t)return Math.round(u/t)+"m";if(o>=e)return Math.round(u/e)+"s";return u+"ms"}(s);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(s))}}function Rr(){if(_r)return br;return _r=1,br=function(e){function t(e){let r,u,o,i=null;function s(...e){if(!s.enabled)return;const n=s,u=Number(new Date),o=u-(r||u);n.diff=o,n.prev=r,n.curr=u,r=u,e[0]=t.coerce(e[0]),"string"!=typeof e[0]&&e.unshift("%O");let i=0;e[0]=e[0].replace(/%([a-zA-Z%])/g,((r,u)=>{if("%%"===r)return"%";i++;const o=t.formatters[u];if("function"==typeof o){const t=e[i];r=o.call(n,t),e.splice(i,1),i--}return r})),t.formatArgs.call(n,e);(n.log||t.log).apply(n,e)}return s.namespace=e,s.useColors=t.useColors(),s.color=t.selectColor(e),s.extend=n,s.destroy=t.destroy,Object.defineProperty(s,"enabled",{enumerable:!0,configurable:!1,get:()=>null!==i?i:(u!==t.namespaces&&(u=t.namespaces,o=t.enabled(e)),o),set:e=>{i=e}}),"function"==typeof t.init&&t.init(s),s}function n(e,n){const r=t(this.namespace+(void 0===n?":":n)+e);return r.log=this.log,r}function r(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return t.debug=t,t.default=t,t.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},t.disable=function(){const e=[...t.names.map(r),...t.skips.map(r).map((e=>"-"+e))].join(",");return t.enable(""),e},t.enable=function(e){let n;t.save(e),t.namespaces=e,t.names=[],t.skips=[];const r=("string"==typeof e?e:"").split(/[\s,]+/),u=r.length;for(n=0;n{t[n]=e[n]})),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){let n=0;for(let t=0;t{const n=e.startsWith("-")?"":1===e.length?"-":"--",r=t.indexOf(n+e),u=t.indexOf("--");return-1!==r&&(-1===u||r{}),"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."),t.colors=[6,2,3,4,5,1];try{const e=function(){if($r)return jr;$r=1;const e=E.default,t=A.default,n=Vr(),{env:r}=process;let u;function o(e){return 0!==e&&{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}function i(t,o){if(0===u)return 0;if(n("color=16m")||n("color=full")||n("color=truecolor"))return 3;if(n("color=256"))return 2;if(t&&!o&&void 0===u)return 0;const i=u||0;if("dumb"===r.TERM)return i;if("win32"===process.platform){const t=e.release().split(".");return Number(t[0])>=10&&Number(t[2])>=10586?Number(t[2])>=14931?3:2:1}if("CI"in r)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","GITHUB_ACTIONS","BUILDKITE"].some((e=>e in r))||"codeship"===r.CI_NAME?1:i;if("TEAMCITY_VERSION"in r)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(r.TEAMCITY_VERSION)?1:0;if("truecolor"===r.COLORTERM)return 3;if("TERM_PROGRAM"in r){const e=parseInt((r.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(r.TERM_PROGRAM){case"iTerm.app":return e>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(r.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(r.TERM)||"COLORTERM"in r?1:i}return n("no-color")||n("no-colors")||n("color=false")||n("color=never")?u=0:(n("color")||n("colors")||n("color=true")||n("color=always"))&&(u=1),"FORCE_COLOR"in r&&(u="true"===r.FORCE_COLOR?1:"false"===r.FORCE_COLOR?0:0===r.FORCE_COLOR.length?1:Math.min(parseInt(r.FORCE_COLOR,10),3)),jr={supportsColor:function(e){return o(i(e,e&&e.isTTY))},stdout:o(i(!0,t.isatty(1))),stderr:o(i(!0,t.isatty(2)))}}();e&&(e.stderr||e).level>=2&&(t.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221])}catch(e){}t.inspectOpts=Object.keys(process.env).filter((e=>/^debug_/i.test(e))).reduce(((e,t)=>{const n=t.substring(6).toLowerCase().replace(/_([a-z])/g,((e,t)=>t.toUpperCase()));let r=process.env[t];return r=!!/^(yes|on|true|enabled)$/i.test(r)||!/^(no|off|false|disabled)$/i.test(r)&&("null"===r?null:Number(r)),e[n]=r,e}),{}),e.exports=Rr()(t);const{formatters:u}=e.exports;u.o=function(e){return this.inspectOpts.colors=this.useColors,r.inspect(e,this.inspectOpts).split("\n").map((e=>e.trim())).join(" ")},u.O=function(e){return this.inspectOpts.colors=this.useColors,r.inspect(e,this.inspectOpts)}}(Gr,Gr.exports)),Gr.exports}Jr=Nr,"undefined"==typeof process||"renderer"===process.type||!0===process.browser||process.__nwjs?Jr.exports=(Br||(Br=1,function(e,t){t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;const n="color: "+this.color;t.splice(1,0,n,"color: inherit");let r=0,u=0;t[0].replace(/%[a-zA-Z%]/g,(e=>{"%%"!==e&&(r++,"%c"===e&&(u=r))})),t.splice(u,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(e){}},t.load=function(){let e;try{e=t.storage.getItem("debug")}catch(e){}return!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG),e},t.useColors=function(){return!("undefined"==typeof window||!window.process||"renderer"!==window.process.type&&!window.process.__nwjs)||("undefined"==typeof navigator||!navigator.userAgent||!navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))&&("undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/))},t.storage=function(){try{return localStorage}catch(e){}}(),t.destroy=(()=>{let e=!1;return()=>{e||(e=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.log=console.debug||console.log||(()=>{}),e.exports=Rr()(t);const{formatters:n}=e.exports;n.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}}(Ir,Ir.exports)),Ir.exports):Jr.exports=Ur();var Wr=function(e){return(e=e||{}).circles?function(e){var t=[],n=[];return e.proto?function e(u){if("object"!=typeof u||null===u)return u;if(u instanceof Date)return new Date(u);if(Array.isArray(u))return r(u,e);if(u instanceof Map)return new Map(r(Array.from(u),e));if(u instanceof Set)return new Set(r(Array.from(u),e));var o={};for(var i in t.push(u),n.push(o),u){var s=u[i];if("object"!=typeof s||null===s)o[i]=s;else if(s instanceof Date)o[i]=new Date(s);else if(s instanceof Map)o[i]=new Map(r(Array.from(s),e));else if(s instanceof Set)o[i]=new Set(r(Array.from(s),e));else if(ArrayBuffer.isView(s))o[i]=zr(s);else{var c=t.indexOf(s);o[i]=-1!==c?n[c]:e(s)}}return t.pop(),n.pop(),o}:function e(u){if("object"!=typeof u||null===u)return u;if(u instanceof Date)return new Date(u);if(Array.isArray(u))return r(u,e);if(u instanceof Map)return new Map(r(Array.from(u),e));if(u instanceof Set)return new Set(r(Array.from(u),e));var o={};for(var i in t.push(u),n.push(o),u)if(!1!==Object.hasOwnProperty.call(u,i)){var s=u[i];if("object"!=typeof s||null===s)o[i]=s;else if(s instanceof Date)o[i]=new Date(s);else if(s instanceof Map)o[i]=new Map(r(Array.from(s),e));else if(s instanceof Set)o[i]=new Set(r(Array.from(s),e));else if(ArrayBuffer.isView(s))o[i]=zr(s);else{var c=t.indexOf(s);o[i]=-1!==c?n[c]:e(s)}}return t.pop(),n.pop(),o};function r(e,r){for(var u=Object.keys(e),o=new Array(u.length),i=0;i!e,Qr=e=>e&&"object"==typeof e&&!Array.isArray(e),eu=(e,t,n)=>{(Array.isArray(t)?t:[t]).forEach((t=>{if(t)throw new Error(`Problem with log4js configuration: (${Kr.inspect(e,{depth:5})}) - ${n}`)}))};var tu={configure:e=>{qr("New configuration to be validated: ",e),eu(e,Zr(Qr(e)),"must be an object."),qr(`Calling pre-processing listeners (${Yr.length})`),Yr.forEach((t=>t(e))),qr("Configuration pre-processing finished."),qr(`Calling configuration listeners (${Xr.length})`),Xr.forEach((t=>t(e))),qr("Configuration finished.")},addListener:e=>{Xr.push(e),qr(`Added listener, now ${Xr.length} listeners`)},addPreProcessingListener:e=>{Yr.push(e),qr(`Added pre-processing listener, now ${Yr.length} listeners`)},throwExceptionIf:eu,anObject:Qr,anInteger:e=>e&&"number"==typeof e&&Number.isInteger(e),validIdentifier:e=>/^[A-Za-z][A-Za-z0-9_]*$/g.test(e),not:Zr},nu={exports:{}};!function(e){function t(e,t){for(var n=e.toString();n.length-1?s:c,l=n(u.getHours()),f=n(u.getMinutes()),d=n(u.getSeconds()),D=t(u.getMilliseconds(),3),p=function(e){var t=Math.abs(e),n=String(Math.floor(t/60)),r=String(t%60);return n=("0"+n).slice(-2),r=("0"+r).slice(-2),0===e?"Z":(e<0?"+":"-")+n+":"+r}(u.getTimezoneOffset());return r.replace(/dd/g,o).replace(/MM/g,i).replace(/y{1,4}/g,a).replace(/hh/g,l).replace(/mm/g,f).replace(/ss/g,d).replace(/SSS/g,D).replace(/O/g,p)}function u(e,t,n,r){e["set"+(r?"":"UTC")+t](n)}e.exports=r,e.exports.asString=r,e.exports.parse=function(t,n,r){if(!t)throw new Error("pattern must be supplied");return function(t,n,r){var o=t.indexOf("O")<0,i=!1,s=[{pattern:/y{1,4}/,regexp:"\\d{1,4}",fn:function(e,t){u(e,"FullYear",t,o)}},{pattern:/MM/,regexp:"\\d{1,2}",fn:function(e,t){u(e,"Month",t-1,o),e.getMonth()!==t-1&&(i=!0)}},{pattern:/dd/,regexp:"\\d{1,2}",fn:function(e,t){i&&u(e,"Month",e.getMonth()-1,o),u(e,"Date",t,o)}},{pattern:/hh/,regexp:"\\d{1,2}",fn:function(e,t){u(e,"Hours",t,o)}},{pattern:/mm/,regexp:"\\d\\d",fn:function(e,t){u(e,"Minutes",t,o)}},{pattern:/ss/,regexp:"\\d\\d",fn:function(e,t){u(e,"Seconds",t,o)}},{pattern:/SSS/,regexp:"\\d\\d\\d",fn:function(e,t){u(e,"Milliseconds",t,o)}},{pattern:/O/,regexp:"[+-]\\d{1,2}:?\\d{2}?|Z",fn:function(e,t){t="Z"===t?0:t.replace(":","");var n=Math.abs(t),r=(t>0?-1:1)*(n%100+60*Math.floor(n/100));e.setUTCMinutes(e.getUTCMinutes()+r)}}],c=s.reduce((function(e,t){return t.pattern.test(e.regexp)?(t.index=e.regexp.match(t.pattern).index,e.regexp=e.regexp.replace(t.pattern,"("+t.regexp+")")):t.index=-1,e}),{regexp:t,index:[]}),a=s.filter((function(e){return e.index>-1}));a.sort((function(e,t){return e.index-t.index}));var l=new RegExp(c.regexp).exec(n);if(l){var f=r||e.exports.now();return a.forEach((function(e,t){e.fn(f,l[t+1])})),f}throw new Error("String '"+n+"' could not be parsed as '"+t+"'")}(t,n,r)},e.exports.now=function(){return new Date},e.exports.ISO8601_FORMAT="yyyy-MM-ddThh:mm:ss.SSS",e.exports.ISO8601_WITH_TZ_OFFSET_FORMAT="yyyy-MM-ddThh:mm:ss.SSSO",e.exports.DATETIME_FORMAT="dd MM yyyy hh:mm:ss.SSS",e.exports.ABSOLUTETIME_FORMAT="hh:mm:ss.SSS"}(nu);const ru=nu.exports,uu=E.default,ou=F.default,iu=p.default,su={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[90,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[91,39],yellow:[33,39]};function cu(e){return e?`[${su[e][0]}m`:""}function au(e){return e?`[${su[e][1]}m`:""}function lu(e,t){return n=ou.format("[%s] [%s] %s - ",ru.asString(e.startTime),e.level.toString(),e.categoryName),cu(r=t)+n+au(r);var n,r}function fu(e){return lu(e)+ou.format(...e.data)}function du(e){return lu(e,e.level.colour)+ou.format(...e.data)}function Du(e){return ou.format(...e.data)}function pu(e){return e.data[0]}function Eu(e,t){const n=/%(-?[0-9]+)?(\.?-?[0-9]+)?([[\]cdhmnprzxXyflos%])(\{([^}]+)\})?|([^%]+)/;function r(e){return e&&e.pid?e.pid.toString():process.pid.toString()}e=e||"%r %p %c - %m%n";const u={c:function(e,t){let n=e.categoryName;if(t){const e=parseInt(t,10),r=n.split(".");ee&&(n=r.slice(-e).join(iu.sep))}return n},l:function(e){return e.lineNumber?`${e.lineNumber}`:""},o:function(e){return e.columnNumber?`${e.columnNumber}`:""},s:function(e){return e.callStack||""}};function o(e,t,n){return u[e](t,n)}function i(e,t,n){let r=e;return r=function(e,t){let n;return e?(n=parseInt(e.substr(1),10),n>0?t.slice(0,n):t.slice(n)):t}(t,r),r=function(e,t){let n;if(e)if("-"===e.charAt(0))for(n=parseInt(e.substr(1),10);t.lengthDu,basic:()=>fu,colored:()=>du,coloured:()=>du,pattern:e=>Eu(e&&e.pattern,e&&e.tokens),dummy:()=>pu};var hu={basicLayout:fu,messagePassThroughLayout:Du,patternLayout:Eu,colouredLayout:du,coloredLayout:du,dummyLayout:pu,addLayout(e,t){mu[e]=t},layout:(e,t)=>mu[e]&&mu[e](t)};const yu=tu,Cu=["white","grey","black","blue","cyan","green","magenta","red","yellow"];class Fu{constructor(e,t,n){this.level=e,this.levelStr=t,this.colour=n}toString(){return this.levelStr}static getLevel(e,t){return e?e instanceof Fu?e:(e instanceof Object&&e.levelStr&&(e=e.levelStr),Fu[e.toString().toUpperCase()]||t):t}static addLevels(e){if(e){Object.keys(e).forEach((t=>{const n=t.toUpperCase();Fu[n]=new Fu(e[t].value,n,e[t].colour);const r=Fu.levels.findIndex((e=>e.levelStr===n));r>-1?Fu.levels[r]=Fu[n]:Fu.levels.push(Fu[n])})),Fu.levels.sort(((e,t)=>e.level-t.level))}}isLessThanOrEqualTo(e){return"string"==typeof e&&(e=Fu.getLevel(e)),this.level<=e.level}isGreaterThanOrEqualTo(e){return"string"==typeof e&&(e=Fu.getLevel(e)),this.level>=e.level}isEqualTo(e){return"string"==typeof e&&(e=Fu.getLevel(e)),this.level===e.level}}Fu.levels=[],Fu.addLevels({ALL:{value:Number.MIN_VALUE,colour:"grey"},TRACE:{value:5e3,colour:"blue"},DEBUG:{value:1e4,colour:"cyan"},INFO:{value:2e4,colour:"green"},WARN:{value:3e4,colour:"yellow"},ERROR:{value:4e4,colour:"red"},FATAL:{value:5e4,colour:"magenta"},MARK:{value:9007199254740992,colour:"grey"},OFF:{value:Number.MAX_VALUE,colour:"grey"}}),yu.addListener((e=>{const t=e.levels;if(t){yu.throwExceptionIf(e,yu.not(yu.anObject(t)),"levels must be an object");Object.keys(t).forEach((n=>{yu.throwExceptionIf(e,yu.not(yu.validIdentifier(n)),`level name "${n}" is not a valid identifier (must start with a letter, only contain A-Z,a-z,0-9,_)`),yu.throwExceptionIf(e,yu.not(yu.anObject(t[n])),`level "${n}" must be an object`),yu.throwExceptionIf(e,yu.not(t[n].value),`level "${n}" must have a 'value' property`),yu.throwExceptionIf(e,yu.not(yu.anInteger(t[n].value)),`level "${n}".value must have an integer value`),yu.throwExceptionIf(e,yu.not(t[n].colour),`level "${n}" must have a 'colour' property`),yu.throwExceptionIf(e,yu.not(Cu.indexOf(t[n].colour)>-1),`level "${n}".colour must be one of ${Cu.join(", ")}`)}))}})),yu.addListener((e=>{Fu.addLevels(e.levels)}));var gu=Fu,Au={exports:{}},vu={};/*! (c) 2020 Andrea Giammarchi */ +const{parse:Su,stringify:wu}=JSON,{keys:Ou}=Object,bu=String,_u="string",Bu={},Pu="object",ku=(e,t)=>t,xu=e=>e instanceof bu?bu(e):e,Nu=(e,t)=>typeof t===_u?new bu(t):t,Iu=(e,t,n,r)=>{const u=[];for(let o=Ou(n),{length:i}=o,s=0;s{const r=bu(t.push(n)-1);return e.set(n,r),r},Ru=(e,t)=>{const n=Su(e,Nu).map(xu),r=n[0],u=t||ku,o=typeof r===Pu&&r?Iu(n,new Set,r,u):r;return u.call({"":o},"",o)};vu.parse=Ru;const Mu=(e,t,n)=>{const r=t&&typeof t===Pu?(e,n)=>""===e||-1Su(Mu(e));vu.fromJSON=e=>Ru(wu(e));const Lu=vu,ju=gu;class $u{constructor(e,t,n,r,u){this.startTime=new Date,this.categoryName=e,this.data=n,this.level=t,this.context=Object.assign({},r),this.pid=process.pid,u&&(this.functionName=u.functionName,this.fileName=u.fileName,this.lineNumber=u.lineNumber,this.columnNumber=u.columnNumber,this.callStack=u.callStack)}serialise(){const e=this.data.map((e=>(e&&e.message&&e.stack&&(e=Object.assign({message:e.message,stack:e.stack},e)),e)));return this.data=e,Lu.stringify(this)}static deserialise(e){let t;try{const n=Lu.parse(e);n.data=n.data.map((e=>{if(e&&e.message&&e.stack){const t=new Error(e);Object.keys(e).forEach((n=>{t[n]=e[n]})),e=t}return e})),t=new $u(n.categoryName,ju.getLevel(n.level.levelStr),n.data,n.context),t.startTime=new Date(n.startTime),t.pid=n.pid,t.cluster=n.cluster}catch(n){t=new $u("log4js",ju.ERROR,["Unable to parse log:",e,"because: ",n])}return t}}var Hu=$u;const Ju=Nr.exports("log4js:clustering"),Gu=Hu,Vu=tu;let Uu=!1,Wu=null;try{Wu=require("cluster")}catch(e){Ju("cluster module not present"),Uu=!0}const zu=[];let Ku=!1,qu="NODE_APP_INSTANCE";const Yu=()=>Ku&&"0"===process.env[qu],Xu=()=>Uu||Wu.isMaster||Yu(),Zu=e=>{zu.forEach((t=>t(e)))},Qu=(e,t)=>{if(Ju("cluster message received from worker ",e,": ",t),e.topic&&e.data&&(t=e,e=void 0),t&&t.topic&&"log4js:message"===t.topic){Ju("received message: ",t.data);const e=Gu.deserialise(t.data);Zu(e)}};Uu||Vu.addListener((e=>{zu.length=0,({pm2:Ku,disableClustering:Uu,pm2InstanceVar:qu="NODE_APP_INSTANCE"}=e),Ju(`clustering disabled ? ${Uu}`),Ju(`cluster.isMaster ? ${Wu&&Wu.isMaster}`),Ju(`pm2 enabled ? ${Ku}`),Ju(`pm2InstanceVar = ${qu}`),Ju(`process.env[${qu}] = ${process.env[qu]}`),Ku&&process.removeListener("message",Qu),Wu&&Wu.removeListener&&Wu.removeListener("message",Qu),Uu||e.disableClustering?Ju("Not listening for cluster messages, because clustering disabled."):Yu()?(Ju("listening for PM2 broadcast messages"),process.on("message",Qu)):Wu.isMaster?(Ju("listening for cluster messages"),Wu.on("message",Qu)):Ju("not listening for messages, because we are not a master process")}));var eo={onlyOnMaster:(e,t)=>Xu()?e():t,isMaster:Xu,send:e=>{Xu()?Zu(e):(Ku||(e.cluster={workerId:Wu.worker.id,worker:process.pid}),process.send({topic:"log4js:message",data:e.serialise()}))},onMessage:e=>{zu.push(e)}},to={};function no(e){if("number"==typeof e&&Number.isInteger(e))return e;const t={K:1024,M:1048576,G:1073741824},n=Object.keys(t),r=e.substr(e.length-1).toLocaleUpperCase(),u=e.substring(0,e.length-1).trim();if(n.indexOf(r)<0||!Number.isInteger(Number(u)))throw Error(`maxLogSize: "${e}" is invalid`);return u*t[r]}function ro(e){return function(e,t){const n=Object.assign({},t);return Object.keys(e).forEach((r=>{n[r]&&(n[r]=e[r](t[r]))})),n}({maxLogSize:no},e)}const uo={file:ro,fileSync:ro};to.modifyConfig=e=>uo[e.type]?uo[e.type](e):e;var oo={};const io=console.log.bind(console);oo.configure=function(e,t){let n=t.colouredLayout;return e.layout&&(n=t.layout(e.layout.type,e.layout)),function(e,t){return n=>{io(e(n,t))}}(n,e.timezoneOffset)};var so={};so.configure=function(e,t){let n=t.colouredLayout;return e.layout&&(n=t.layout(e.layout.type,e.layout)),function(e,t){return n=>{process.stdout.write(`${e(n,t)}\n`)}}(n,e.timezoneOffset)};var co={};co.configure=function(e,t){let n=t.colouredLayout;return e.layout&&(n=t.layout(e.layout.type,e.layout)),function(e,t){return n=>{process.stderr.write(`${e(n,t)}\n`)}}(n,e.timezoneOffset)};var ao={};ao.configure=function(e,t,n,r){const u=n(e.appender);return function(e,t,n,r){const u=r.getLevel(e),o=r.getLevel(t,r.FATAL);return e=>{const t=e.level;t.isGreaterThanOrEqualTo(u)&&t.isLessThanOrEqualTo(o)&&n(e)}}(e.level,e.maxLevel,u,r)};var lo={};const fo=Nr.exports("log4js:categoryFilter");lo.configure=function(e,t,n){const r=n(e.appender);return function(e,t){return"string"==typeof e&&(e=[e]),n=>{fo(`Checking ${n.categoryName} against ${e}`),-1===e.indexOf(n.categoryName)&&(fo("Not excluded, sending to appender"),t(n))}}(e.exclude,r)};var Do={};const po=Nr.exports("log4js:noLogFilter");Do.configure=function(e,t,n){const r=n(e.appender);return function(e,t){return n=>{po(`Checking data: ${n.data} against filters: ${e}`),"string"==typeof e&&(e=[e]),e=e.filter((e=>null!=e&&""!==e));const r=new RegExp(e.join("|"),"i");(0===e.length||n.data.findIndex((e=>r.test(e)))<0)&&(po("Not excluded, sending to appender"),t(n))}}(e.exclude,r)};var Eo={},mo={exports:{}},ho={},yo={fromCallback:function(e){return Object.defineProperty((function(){if("function"!=typeof arguments[arguments.length-1])return new Promise(((t,n)=>{arguments[arguments.length]=(e,r)=>{if(e)return n(e);t(r)},arguments.length++,e.apply(this,arguments)}));e.apply(this,arguments)}),"name",{value:e.name})},fromPromise:function(e){return Object.defineProperty((function(){const t=arguments[arguments.length-1];if("function"!=typeof t)return e.apply(this,arguments);e.apply(this,arguments).then((e=>t(null,e)),t)}),"name",{value:e.name})}};!function(e){const t=yo.fromCallback,n=we,r=["access","appendFile","chmod","chown","close","copyFile","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchown","lchmod","link","lstat","mkdir","mkdtemp","open","readFile","readdir","readlink","realpath","rename","rmdir","stat","symlink","truncate","unlink","utimes","writeFile"].filter((e=>"function"==typeof n[e]));Object.keys(n).forEach((t=>{"promises"!==t&&(e[t]=n[t])})),r.forEach((r=>{e[r]=t(n[r])})),e.exists=function(e,t){return"function"==typeof t?n.exists(e,t):new Promise((t=>n.exists(e,t)))},e.read=function(e,t,r,u,o,i){return"function"==typeof i?n.read(e,t,r,u,o,i):new Promise(((i,s)=>{n.read(e,t,r,u,o,((e,t,n)=>{if(e)return s(e);i({bytesRead:t,buffer:n})}))}))},e.write=function(e,t,...r){return"function"==typeof r[r.length-1]?n.write(e,t,...r):new Promise(((u,o)=>{n.write(e,t,...r,((e,t,n)=>{if(e)return o(e);u({bytesWritten:t,buffer:n})}))}))},"function"==typeof n.realpath.native&&(e.realpath.native=t(n.realpath.native))}(ho);const Co=p.default;function Fo(e){return(e=Co.normalize(Co.resolve(e)).split(Co.sep)).length>0?e[0]:null}const go=/[<>:"|?*]/;var Ao=function(e){const t=Fo(e);return e=e.replace(t,""),go.test(e)};const vo=we,So=p.default,wo=Ao,Oo=parseInt("0777",8);var bo=function e(t,n,r,u){if("function"==typeof n?(r=n,n={}):n&&"object"==typeof n||(n={mode:n}),"win32"===process.platform&&wo(t)){const e=new Error(t+" contains invalid WIN32 path characters.");return e.code="EINVAL",r(e)}let o=n.mode;const i=n.fs||vo;void 0===o&&(o=Oo&~process.umask()),u||(u=null),r=r||function(){},t=So.resolve(t),i.mkdir(t,o,(o=>{if(!o)return r(null,u=u||t);if("ENOENT"===o.code){if(So.dirname(t)===t)return r(o);e(So.dirname(t),n,((u,o)=>{u?r(u,o):e(t,n,r,o)}))}else i.stat(t,((e,t)=>{e||!t.isDirectory()?r(o,u):r(null,u)}))}))};const _o=we,Bo=p.default,Po=Ao,ko=parseInt("0777",8);var xo=function e(t,n,r){n&&"object"==typeof n||(n={mode:n});let u=n.mode;const o=n.fs||_o;if("win32"===process.platform&&Po(t)){const e=new Error(t+" contains invalid WIN32 path characters.");throw e.code="EINVAL",e}void 0===u&&(u=ko&~process.umask()),r||(r=null),t=Bo.resolve(t);try{o.mkdirSync(t,u),r=r||t}catch(u){if("ENOENT"===u.code){if(Bo.dirname(t)===t)throw u;r=e(Bo.dirname(t),n,r),e(t,n,r)}else{let e;try{e=o.statSync(t)}catch(e){throw u}if(!e.isDirectory())throw u}}return r};const No=(0,yo.fromCallback)(bo);var Io={mkdirs:No,mkdirsSync:xo,mkdirp:No,mkdirpSync:xo,ensureDir:No,ensureDirSync:xo};const To=we;E.default,p.default;var Ro=function(e,t,n,r){To.open(e,"r+",((e,u)=>{if(e)return r(e);To.futimes(u,t,n,(e=>{To.close(u,(t=>{r&&r(e||t)}))}))}))},Mo=function(e,t,n){const r=To.openSync(e,"r+");return To.futimesSync(r,t,n),To.closeSync(r)};const Lo=we,jo=p.default,$o=10,Ho=5,Jo=0,Go=process.versions.node.split("."),Vo=Number.parseInt(Go[0],10),Uo=Number.parseInt(Go[1],10),Wo=Number.parseInt(Go[2],10);function zo(){if(Vo>$o)return!0;if(Vo===$o){if(Uo>Ho)return!0;if(Uo===Ho&&Wo>=Jo)return!0}return!1}function Ko(e,t){const n=jo.resolve(e).split(jo.sep).filter((e=>e)),r=jo.resolve(t).split(jo.sep).filter((e=>e));return n.reduce(((e,t,n)=>e&&r[n]===t),!0)}function qo(e,t,n){return`Cannot ${n} '${e}' to a subdirectory of itself, '${t}'.`}var Yo,Xo,Zo={checkPaths:function(e,t,n,r){!function(e,t,n){zo()?Lo.stat(e,{bigint:!0},((e,r)=>{if(e)return n(e);Lo.stat(t,{bigint:!0},((e,t)=>e?"ENOENT"===e.code?n(null,{srcStat:r,destStat:null}):n(e):n(null,{srcStat:r,destStat:t})))})):Lo.stat(e,((e,r)=>{if(e)return n(e);Lo.stat(t,((e,t)=>e?"ENOENT"===e.code?n(null,{srcStat:r,destStat:null}):n(e):n(null,{srcStat:r,destStat:t})))}))}(e,t,((u,o)=>{if(u)return r(u);const{srcStat:i,destStat:s}=o;return s&&s.ino&&s.dev&&s.ino===i.ino&&s.dev===i.dev?r(new Error("Source and destination must not be the same.")):i.isDirectory()&&Ko(e,t)?r(new Error(qo(e,t,n))):r(null,{srcStat:i,destStat:s})}))},checkPathsSync:function(e,t,n){const{srcStat:r,destStat:u}=function(e,t){let n,r;n=zo()?Lo.statSync(e,{bigint:!0}):Lo.statSync(e);try{r=zo()?Lo.statSync(t,{bigint:!0}):Lo.statSync(t)}catch(e){if("ENOENT"===e.code)return{srcStat:n,destStat:null};throw e}return{srcStat:n,destStat:r}}(e,t);if(u&&u.ino&&u.dev&&u.ino===r.ino&&u.dev===r.dev)throw new Error("Source and destination must not be the same.");if(r.isDirectory()&&Ko(e,t))throw new Error(qo(e,t,n));return{srcStat:r,destStat:u}},checkParentPaths:function e(t,n,r,u,o){const i=jo.resolve(jo.dirname(t)),s=jo.resolve(jo.dirname(r));if(s===i||s===jo.parse(s).root)return o();zo()?Lo.stat(s,{bigint:!0},((i,c)=>i?"ENOENT"===i.code?o():o(i):c.ino&&c.dev&&c.ino===n.ino&&c.dev===n.dev?o(new Error(qo(t,r,u))):e(t,n,s,u,o))):Lo.stat(s,((i,c)=>i?"ENOENT"===i.code?o():o(i):c.ino&&c.dev&&c.ino===n.ino&&c.dev===n.dev?o(new Error(qo(t,r,u))):e(t,n,s,u,o)))},checkParentPathsSync:function e(t,n,r,u){const o=jo.resolve(jo.dirname(t)),i=jo.resolve(jo.dirname(r));if(i===o||i===jo.parse(i).root)return;let s;try{s=zo()?Lo.statSync(i,{bigint:!0}):Lo.statSync(i)}catch(e){if("ENOENT"===e.code)return;throw e}if(s.ino&&s.dev&&s.ino===n.ino&&s.dev===n.dev)throw new Error(qo(t,r,u));return e(t,n,i,u)},isSrcSubdir:Ko};const Qo=we,ei=p.default,ti=Io.mkdirsSync,ni=Mo,ri=Zo;function ui(e,t,n,r){if(!r.filter||r.filter(t,n))return function(e,t,n,r){const u=r.dereference?Qo.statSync:Qo.lstatSync,o=u(t);if(o.isDirectory())return function(e,t,n,r,u){if(!t)return function(e,t,n,r){return Qo.mkdirSync(n),ii(t,n,r),Qo.chmodSync(n,e.mode)}(e,n,r,u);if(t&&!t.isDirectory())throw new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`);return ii(n,r,u)}(o,e,t,n,r);if(o.isFile()||o.isCharacterDevice()||o.isBlockDevice())return function(e,t,n,r,u){return t?function(e,t,n,r){if(r.overwrite)return Qo.unlinkSync(n),oi(e,t,n,r);if(r.errorOnExist)throw new Error(`'${n}' already exists`)}(e,n,r,u):oi(e,n,r,u)}(o,e,t,n,r);if(o.isSymbolicLink())return function(e,t,n,r){let u=Qo.readlinkSync(t);r.dereference&&(u=ei.resolve(process.cwd(),u));if(e){let e;try{e=Qo.readlinkSync(n)}catch(e){if("EINVAL"===e.code||"UNKNOWN"===e.code)return Qo.symlinkSync(u,n);throw e}if(r.dereference&&(e=ei.resolve(process.cwd(),e)),ri.isSrcSubdir(u,e))throw new Error(`Cannot copy '${u}' to a subdirectory of itself, '${e}'.`);if(Qo.statSync(n).isDirectory()&&ri.isSrcSubdir(e,u))throw new Error(`Cannot overwrite '${e}' with '${u}'.`);return function(e,t){return Qo.unlinkSync(t),Qo.symlinkSync(e,t)}(u,n)}return Qo.symlinkSync(u,n)}(e,t,n,r)}(e,t,n,r)}function oi(e,t,n,r){return"function"==typeof Qo.copyFileSync?(Qo.copyFileSync(t,n),Qo.chmodSync(n,e.mode),r.preserveTimestamps?ni(n,e.atime,e.mtime):void 0):function(e,t,n,r){const u=65536,o=(Xo?Yo:(Xo=1,Yo=function(e){if("function"==typeof Buffer.allocUnsafe)try{return Buffer.allocUnsafe(e)}catch(t){return new Buffer(e)}return new Buffer(e)}))(u),i=Qo.openSync(t,"r"),s=Qo.openSync(n,"w",e.mode);let c=0;for(;cfunction(e,t,n,r){const u=ei.join(t,e),o=ei.join(n,e),{destStat:i}=ri.checkPathsSync(u,o,"copy");return ui(i,u,o,r)}(r,e,t,n)))}var si=function(e,t,n){"function"==typeof n&&(n={filter:n}),(n=n||{}).clobber=!("clobber"in n)||!!n.clobber,n.overwrite="overwrite"in n?!!n.overwrite:n.clobber,n.preserveTimestamps&&"ia32"===process.arch&&console.warn("fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269");const{srcStat:r,destStat:u}=ri.checkPathsSync(e,t,"copy");return ri.checkParentPathsSync(e,r,t,"copy"),function(e,t,n,r){if(r.filter&&!r.filter(t,n))return;const u=ei.dirname(n);Qo.existsSync(u)||ti(u);return ui(e,t,n,r)}(u,e,t,n)},ci={copySync:si};const ai=yo.fromPromise,li=ho;var fi={pathExists:ai((function(e){return li.access(e).then((()=>!0)).catch((()=>!1))})),pathExistsSync:li.existsSync};const di=we,Di=p.default,pi=Io.mkdirs,Ei=fi.pathExists,mi=Ro,hi=Zo;function yi(e,t,n,r,u){const o=Di.dirname(n);Ei(o,((i,s)=>i?u(i):s?Fi(e,t,n,r,u):void pi(o,(o=>o?u(o):Fi(e,t,n,r,u)))))}function Ci(e,t,n,r,u,o){Promise.resolve(u.filter(n,r)).then((i=>i?e(t,n,r,u,o):o()),(e=>o(e)))}function Fi(e,t,n,r,u){return r.filter?Ci(gi,e,t,n,r,u):gi(e,t,n,r,u)}function gi(e,t,n,r,u){(r.dereference?di.stat:di.lstat)(t,((o,i)=>o?u(o):i.isDirectory()?function(e,t,n,r,u,o){if(!t)return function(e,t,n,r,u){di.mkdir(n,(o=>{if(o)return u(o);Si(t,n,r,(t=>t?u(t):di.chmod(n,e.mode,u)))}))}(e,n,r,u,o);if(t&&!t.isDirectory())return o(new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`));return Si(n,r,u,o)}(i,e,t,n,r,u):i.isFile()||i.isCharacterDevice()||i.isBlockDevice()?function(e,t,n,r,u,o){return t?function(e,t,n,r,u){if(!r.overwrite)return r.errorOnExist?u(new Error(`'${n}' already exists`)):u();di.unlink(n,(o=>o?u(o):Ai(e,t,n,r,u)))}(e,n,r,u,o):Ai(e,n,r,u,o)}(i,e,t,n,r,u):i.isSymbolicLink()?function(e,t,n,r,u){di.readlink(t,((t,o)=>t?u(t):(r.dereference&&(o=Di.resolve(process.cwd(),o)),e?void di.readlink(n,((t,i)=>t?"EINVAL"===t.code||"UNKNOWN"===t.code?di.symlink(o,n,u):u(t):(r.dereference&&(i=Di.resolve(process.cwd(),i)),hi.isSrcSubdir(o,i)?u(new Error(`Cannot copy '${o}' to a subdirectory of itself, '${i}'.`)):e.isDirectory()&&hi.isSrcSubdir(i,o)?u(new Error(`Cannot overwrite '${i}' with '${o}'.`)):function(e,t,n){di.unlink(t,(r=>r?n(r):di.symlink(e,t,n)))}(o,n,u)))):di.symlink(o,n,u))))}(e,t,n,r,u):void 0))}function Ai(e,t,n,r,u){return"function"==typeof di.copyFile?di.copyFile(t,n,(t=>t?u(t):vi(e,n,r,u))):function(e,t,n,r,u){const o=di.createReadStream(t);o.on("error",(e=>u(e))).once("open",(()=>{const t=di.createWriteStream(n,{mode:e.mode});t.on("error",(e=>u(e))).on("open",(()=>o.pipe(t))).once("close",(()=>vi(e,n,r,u)))}))}(e,t,n,r,u)}function vi(e,t,n,r){di.chmod(t,e.mode,(u=>u?r(u):n.preserveTimestamps?mi(t,e.atime,e.mtime,r):r()))}function Si(e,t,n,r){di.readdir(e,((u,o)=>u?r(u):wi(o,e,t,n,r)))}function wi(e,t,n,r,u){const o=e.pop();return o?function(e,t,n,r,u,o){const i=Di.join(n,t),s=Di.join(r,t);hi.checkPaths(i,s,"copy",((t,c)=>{if(t)return o(t);const{destStat:a}=c;Fi(a,i,s,u,(t=>t?o(t):wi(e,n,r,u,o)))}))}(e,o,t,n,r,u):u()}var Oi=function(e,t,n,r){"function"!=typeof n||r?"function"==typeof n&&(n={filter:n}):(r=n,n={}),r=r||function(){},(n=n||{}).clobber=!("clobber"in n)||!!n.clobber,n.overwrite="overwrite"in n?!!n.overwrite:n.clobber,n.preserveTimestamps&&"ia32"===process.arch&&console.warn("fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269"),hi.checkPaths(e,t,"copy",((u,o)=>{if(u)return r(u);const{srcStat:i,destStat:s}=o;hi.checkParentPaths(e,i,t,"copy",(u=>u?r(u):n.filter?Ci(yi,s,e,t,n,r):yi(s,e,t,n,r)))}))};var bi={copy:(0,yo.fromCallback)(Oi)};const _i=we,Bi=p.default,Pi=g.default,ki="win32"===process.platform;function xi(e){["unlink","chmod","stat","lstat","rmdir","readdir"].forEach((t=>{e[t]=e[t]||_i[t],e[t+="Sync"]=e[t]||_i[t]})),e.maxBusyTries=e.maxBusyTries||3}function Ni(e,t,n){let r=0;"function"==typeof t&&(n=t,t={}),Pi(e,"rimraf: missing path"),Pi.strictEqual(typeof e,"string","rimraf: path should be a string"),Pi.strictEqual(typeof n,"function","rimraf: callback function required"),Pi(t,"rimraf: invalid options argument provided"),Pi.strictEqual(typeof t,"object","rimraf: options should be object"),xi(t),Ii(e,t,(function u(o){if(o){if(("EBUSY"===o.code||"ENOTEMPTY"===o.code||"EPERM"===o.code)&&rIi(e,t,u)),100*r)}"ENOENT"===o.code&&(o=null)}n(o)}))}function Ii(e,t,n){Pi(e),Pi(t),Pi("function"==typeof n),t.lstat(e,((r,u)=>r&&"ENOENT"===r.code?n(null):r&&"EPERM"===r.code&&ki?Ti(e,t,r,n):u&&u.isDirectory()?Mi(e,t,r,n):void t.unlink(e,(r=>{if(r){if("ENOENT"===r.code)return n(null);if("EPERM"===r.code)return ki?Ti(e,t,r,n):Mi(e,t,r,n);if("EISDIR"===r.code)return Mi(e,t,r,n)}return n(r)}))))}function Ti(e,t,n,r){Pi(e),Pi(t),Pi("function"==typeof r),n&&Pi(n instanceof Error),t.chmod(e,438,(u=>{u?r("ENOENT"===u.code?null:n):t.stat(e,((u,o)=>{u?r("ENOENT"===u.code?null:n):o.isDirectory()?Mi(e,t,n,r):t.unlink(e,r)}))}))}function Ri(e,t,n){let r;Pi(e),Pi(t),n&&Pi(n instanceof Error);try{t.chmodSync(e,438)}catch(e){if("ENOENT"===e.code)return;throw n}try{r=t.statSync(e)}catch(e){if("ENOENT"===e.code)return;throw n}r.isDirectory()?ji(e,t,n):t.unlinkSync(e)}function Mi(e,t,n,r){Pi(e),Pi(t),n&&Pi(n instanceof Error),Pi("function"==typeof r),t.rmdir(e,(u=>{!u||"ENOTEMPTY"!==u.code&&"EEXIST"!==u.code&&"EPERM"!==u.code?u&&"ENOTDIR"===u.code?r(n):r(u):function(e,t,n){Pi(e),Pi(t),Pi("function"==typeof n),t.readdir(e,((r,u)=>{if(r)return n(r);let o,i=u.length;if(0===i)return t.rmdir(e,n);u.forEach((r=>{Ni(Bi.join(e,r),t,(r=>{if(!o)return r?n(o=r):void(0==--i&&t.rmdir(e,n))}))}))}))}(e,t,r)}))}function Li(e,t){let n;xi(t=t||{}),Pi(e,"rimraf: missing path"),Pi.strictEqual(typeof e,"string","rimraf: path should be a string"),Pi(t,"rimraf: missing options"),Pi.strictEqual(typeof t,"object","rimraf: options should be object");try{n=t.lstatSync(e)}catch(n){if("ENOENT"===n.code)return;"EPERM"===n.code&&ki&&Ri(e,t,n)}try{n&&n.isDirectory()?ji(e,t,null):t.unlinkSync(e)}catch(n){if("ENOENT"===n.code)return;if("EPERM"===n.code)return ki?Ri(e,t,n):ji(e,t,n);if("EISDIR"!==n.code)throw n;ji(e,t,n)}}function ji(e,t,n){Pi(e),Pi(t),n&&Pi(n instanceof Error);try{t.rmdirSync(e)}catch(r){if("ENOTDIR"===r.code)throw n;if("ENOTEMPTY"===r.code||"EEXIST"===r.code||"EPERM"===r.code)!function(e,t){if(Pi(e),Pi(t),t.readdirSync(e).forEach((n=>Li(Bi.join(e,n),t))),!ki){return t.rmdirSync(e,t)}{const n=Date.now();do{try{return t.rmdirSync(e,t)}catch(e){}}while(Date.now()-n<500)}}(e,t);else if("ENOENT"!==r.code)throw r}}var $i=Ni;Ni.sync=Li;const Hi=$i;var Ji={remove:(0,yo.fromCallback)(Hi),removeSync:Hi.sync};const Gi=yo.fromCallback,Vi=we,Ui=p.default,Wi=Io,zi=Ji,Ki=Gi((function(e,t){t=t||function(){},Vi.readdir(e,((n,r)=>{if(n)return Wi.mkdirs(e,t);r=r.map((t=>Ui.join(e,t))),function e(){const n=r.pop();if(!n)return t();zi.remove(n,(n=>{if(n)return t(n);e()}))}()}))}));function qi(e){let t;try{t=Vi.readdirSync(e)}catch(t){return Wi.mkdirsSync(e)}t.forEach((t=>{t=Ui.join(e,t),zi.removeSync(t)}))}var Yi={emptyDirSync:qi,emptydirSync:qi,emptyDir:Ki,emptydir:Ki};const Xi=yo.fromCallback,Zi=p.default,Qi=we,es=Io,ts=fi.pathExists;var ns={createFile:Xi((function(e,t){function n(){Qi.writeFile(e,"",(e=>{if(e)return t(e);t()}))}Qi.stat(e,((r,u)=>{if(!r&&u.isFile())return t();const o=Zi.dirname(e);ts(o,((e,r)=>e?t(e):r?n():void es.mkdirs(o,(e=>{if(e)return t(e);n()}))))}))})),createFileSync:function(e){let t;try{t=Qi.statSync(e)}catch(e){}if(t&&t.isFile())return;const n=Zi.dirname(e);Qi.existsSync(n)||es.mkdirsSync(n),Qi.writeFileSync(e,"")}};const rs=yo.fromCallback,us=p.default,os=we,is=Io,ss=fi.pathExists;var cs={createLink:rs((function(e,t,n){function r(e,t){os.link(e,t,(e=>{if(e)return n(e);n(null)}))}ss(t,((u,o)=>u?n(u):o?n(null):void os.lstat(e,(u=>{if(u)return u.message=u.message.replace("lstat","ensureLink"),n(u);const o=us.dirname(t);ss(o,((u,i)=>u?n(u):i?r(e,t):void is.mkdirs(o,(u=>{if(u)return n(u);r(e,t)}))))}))))})),createLinkSync:function(e,t){if(os.existsSync(t))return;try{os.lstatSync(e)}catch(e){throw e.message=e.message.replace("lstat","ensureLink"),e}const n=us.dirname(t);return os.existsSync(n)||is.mkdirsSync(n),os.linkSync(e,t)}};const as=p.default,ls=we,fs=fi.pathExists;var ds={symlinkPaths:function(e,t,n){if(as.isAbsolute(e))return ls.lstat(e,(t=>t?(t.message=t.message.replace("lstat","ensureSymlink"),n(t)):n(null,{toCwd:e,toDst:e})));{const r=as.dirname(t),u=as.join(r,e);return fs(u,((t,o)=>t?n(t):o?n(null,{toCwd:u,toDst:e}):ls.lstat(e,(t=>t?(t.message=t.message.replace("lstat","ensureSymlink"),n(t)):n(null,{toCwd:e,toDst:as.relative(r,e)})))))}},symlinkPathsSync:function(e,t){let n;if(as.isAbsolute(e)){if(n=ls.existsSync(e),!n)throw new Error("absolute srcpath does not exist");return{toCwd:e,toDst:e}}{const r=as.dirname(t),u=as.join(r,e);if(n=ls.existsSync(u),n)return{toCwd:u,toDst:e};if(n=ls.existsSync(e),!n)throw new Error("relative srcpath does not exist");return{toCwd:e,toDst:as.relative(r,e)}}}};const Ds=we;var ps={symlinkType:function(e,t,n){if(n="function"==typeof t?t:n,t="function"!=typeof t&&t)return n(null,t);Ds.lstat(e,((e,r)=>{if(e)return n(null,"file");t=r&&r.isDirectory()?"dir":"file",n(null,t)}))},symlinkTypeSync:function(e,t){let n;if(t)return t;try{n=Ds.lstatSync(e)}catch(e){return"file"}return n&&n.isDirectory()?"dir":"file"}};const Es=yo.fromCallback,ms=p.default,hs=we,ys=Io.mkdirs,Cs=Io.mkdirsSync,Fs=ds.symlinkPaths,gs=ds.symlinkPathsSync,As=ps.symlinkType,vs=ps.symlinkTypeSync,Ss=fi.pathExists;var ws={createSymlink:Es((function(e,t,n,r){r="function"==typeof n?n:r,n="function"!=typeof n&&n,Ss(t,((u,o)=>u?r(u):o?r(null):void Fs(e,t,((u,o)=>{if(u)return r(u);e=o.toDst,As(o.toCwd,n,((n,u)=>{if(n)return r(n);const o=ms.dirname(t);Ss(o,((n,i)=>n?r(n):i?hs.symlink(e,t,u,r):void ys(o,(n=>{if(n)return r(n);hs.symlink(e,t,u,r)}))))}))}))))})),createSymlinkSync:function(e,t,n){if(hs.existsSync(t))return;const r=gs(e,t);e=r.toDst,n=vs(r.toCwd,n);const u=ms.dirname(t);return hs.existsSync(u)||Cs(u),hs.symlinkSync(e,t,n)}};var Os,bs={createFile:ns.createFile,createFileSync:ns.createFileSync,ensureFile:ns.createFile,ensureFileSync:ns.createFileSync,createLink:cs.createLink,createLinkSync:cs.createLinkSync,ensureLink:cs.createLink,ensureLinkSync:cs.createLinkSync,createSymlink:ws.createSymlink,createSymlinkSync:ws.createSymlinkSync,ensureSymlink:ws.createSymlink,ensureSymlinkSync:ws.createSymlinkSync};try{Os=we}catch(e){Os=D.default}function _s(e,t){var n,r="\n";return"object"==typeof t&&null!==t&&(t.spaces&&(n=t.spaces),t.EOL&&(r=t.EOL)),JSON.stringify(e,t?t.replacer:null,n).replace(/\n/g,r)+r}function Bs(e){return Buffer.isBuffer(e)&&(e=e.toString("utf8")),e=e.replace(/^\uFEFF/,"")}var Ps={readFile:function(e,t,n){null==n&&(n=t,t={}),"string"==typeof t&&(t={encoding:t});var r=(t=t||{}).fs||Os,u=!0;"throws"in t&&(u=t.throws),r.readFile(e,t,(function(r,o){if(r)return n(r);var i;o=Bs(o);try{i=JSON.parse(o,t?t.reviver:null)}catch(t){return u?(t.message=e+": "+t.message,n(t)):n(null,null)}n(null,i)}))},readFileSync:function(e,t){"string"==typeof(t=t||{})&&(t={encoding:t});var n=t.fs||Os,r=!0;"throws"in t&&(r=t.throws);try{var u=n.readFileSync(e,t);return u=Bs(u),JSON.parse(u,t.reviver)}catch(t){if(r)throw t.message=e+": "+t.message,t;return null}},writeFile:function(e,t,n,r){null==r&&(r=n,n={});var u=(n=n||{}).fs||Os,o="";try{o=_s(t,n)}catch(e){return void(r&&r(e,null))}u.writeFile(e,o,n,r)},writeFileSync:function(e,t,n){var r=(n=n||{}).fs||Os,u=_s(t,n);return r.writeFileSync(e,u,n)}},ks=Ps;const xs=yo.fromCallback,Ns=ks;var Is={readJson:xs(Ns.readFile),readJsonSync:Ns.readFileSync,writeJson:xs(Ns.writeFile),writeJsonSync:Ns.writeFileSync};const Ts=p.default,Rs=Io,Ms=fi.pathExists,Ls=Is;var js=function(e,t,n,r){"function"==typeof n&&(r=n,n={});const u=Ts.dirname(e);Ms(u,((o,i)=>o?r(o):i?Ls.writeJson(e,t,n,r):void Rs.mkdirs(u,(u=>{if(u)return r(u);Ls.writeJson(e,t,n,r)}))))};const $s=we,Hs=p.default,Js=Io,Gs=Is;var Vs=function(e,t,n){const r=Hs.dirname(e);$s.existsSync(r)||Js.mkdirsSync(r),Gs.writeJsonSync(e,t,n)};const Us=yo.fromCallback,Ws=Is;Ws.outputJson=Us(js),Ws.outputJsonSync=Vs,Ws.outputJSON=Ws.outputJson,Ws.outputJSONSync=Ws.outputJsonSync,Ws.writeJSON=Ws.writeJson,Ws.writeJSONSync=Ws.writeJsonSync,Ws.readJSON=Ws.readJson,Ws.readJSONSync=Ws.readJsonSync;var zs=Ws;const Ks=we,qs=p.default,Ys=ci.copySync,Xs=Ji.removeSync,Zs=Io.mkdirpSync,Qs=Zo;function ec(e,t,n){try{Ks.renameSync(e,t)}catch(r){if("EXDEV"!==r.code)throw r;return function(e,t,n){const r={overwrite:n,errorOnExist:!0};return Ys(e,t,r),Xs(e)}(e,t,n)}}var tc=function(e,t,n){const r=(n=n||{}).overwrite||n.clobber||!1,{srcStat:u}=Qs.checkPathsSync(e,t,"move");return Qs.checkParentPathsSync(e,u,t,"move"),Zs(qs.dirname(t)),function(e,t,n){if(n)return Xs(t),ec(e,t,n);if(Ks.existsSync(t))throw new Error("dest already exists.");return ec(e,t,n)}(e,t,r)},nc={moveSync:tc};const rc=we,uc=p.default,oc=bi.copy,ic=Ji.remove,sc=Io.mkdirp,cc=fi.pathExists,ac=Zo;function lc(e,t,n,r){rc.rename(e,t,(u=>u?"EXDEV"!==u.code?r(u):function(e,t,n,r){const u={overwrite:n,errorOnExist:!0};oc(e,t,u,(t=>t?r(t):ic(e,r)))}(e,t,n,r):r()))}var fc=function(e,t,n,r){"function"==typeof n&&(r=n,n={});const u=n.overwrite||n.clobber||!1;ac.checkPaths(e,t,"move",((n,o)=>{if(n)return r(n);const{srcStat:i}=o;ac.checkParentPaths(e,i,t,"move",(n=>{if(n)return r(n);sc(uc.dirname(t),(n=>n?r(n):function(e,t,n,r){if(n)return ic(t,(u=>u?r(u):lc(e,t,n,r)));cc(t,((u,o)=>u?r(u):o?r(new Error("dest already exists.")):lc(e,t,n,r)))}(e,t,u,r)))}))}))};var dc={move:(0,yo.fromCallback)(fc)};const Dc=yo.fromCallback,pc=we,Ec=p.default,mc=Io,hc=fi.pathExists;var yc={outputFile:Dc((function(e,t,n,r){"function"==typeof n&&(r=n,n="utf8");const u=Ec.dirname(e);hc(u,((o,i)=>o?r(o):i?pc.writeFile(e,t,n,r):void mc.mkdirs(u,(u=>{if(u)return r(u);pc.writeFile(e,t,n,r)}))))})),outputFileSync:function(e,...t){const n=Ec.dirname(e);if(pc.existsSync(n))return pc.writeFileSync(e,...t);mc.mkdirsSync(n),pc.writeFileSync(e,...t)}};!function(e){e.exports=Object.assign({},ho,ci,bi,Yi,bs,zs,Io,nc,dc,yc,fi,Ji);const t=D.default;Object.getOwnPropertyDescriptor(t,"promises")&&Object.defineProperty(e.exports,"promises",{get:()=>t.promises})}(mo);const Cc=Nr.exports("streamroller:fileNameFormatter"),Fc=p.default;const gc=Nr.exports("streamroller:fileNameParser"),Ac=nu.exports;const vc=Nr.exports("streamroller:moveAndMaybeCompressFile"),Sc=mo.exports,wc=v.default;var Oc=async(e,t,n)=>{if(n=function(e){const t={mode:parseInt("0600",8),compress:!1},n=Object.assign({},t,e);return vc(`_parseOption: moveAndMaybeCompressFile called with option=${JSON.stringify(n)}`),n}(n),e!==t){if(await Sc.pathExists(e))if(vc(`moveAndMaybeCompressFile: moving file from ${e} to ${t} ${n.compress?"with":"without"} compress`),n.compress)await new Promise(((r,u)=>{let o=!1;const i=Sc.createWriteStream(t,{mode:n.mode,flags:"wx"}).on("open",(()=>{o=!0;const t=Sc.createReadStream(e).on("open",(()=>{t.pipe(wc.createGzip()).pipe(i)})).on("error",(t=>{vc(`moveAndMaybeCompressFile: error reading ${e}`,t),i.destroy(t)}))})).on("finish",(()=>{vc(`moveAndMaybeCompressFile: finished compressing ${t}, deleting ${e}`),Sc.unlink(e).then(r).catch((t=>{vc(`moveAndMaybeCompressFile: error deleting ${e}, truncating instead`,t),Sc.truncate(e).then(r).catch((t=>{vc(`moveAndMaybeCompressFile: error truncating ${e}`,t),u(t)}))}))})).on("error",(e=>{o?(vc(`moveAndMaybeCompressFile: error writing ${t}, deleting`,e),Sc.unlink(t).then((()=>{u(e)})).catch((e=>{vc(`moveAndMaybeCompressFile: error deleting ${t}`,e),u(e)}))):(vc(`moveAndMaybeCompressFile: error creating ${t}`,e),u(e))}))})).catch((()=>{}));else{vc(`moveAndMaybeCompressFile: renaming ${e} to ${t}`);try{await Sc.move(e,t,{overwrite:!0})}catch(n){if(vc(`moveAndMaybeCompressFile: error renaming ${e} to ${t}`,n),"ENOENT"!==n.code){vc("moveAndMaybeCompressFile: trying copy+truncate instead");try{await Sc.copy(e,t,{overwrite:!0}),await Sc.truncate(e)}catch(e){vc("moveAndMaybeCompressFile: error copy+truncate",e)}}}}}else vc("moveAndMaybeCompressFile: source and target are the same, not doing anything")};const bc=Nr.exports("streamroller:RollingFileWriteStream"),_c=mo.exports,Bc=p.default,Pc=E.default,kc=()=>new Date,xc=nu.exports,{Writable:Nc}=C.default,Ic=({file:e,keepFileExt:t,needsIndex:n,alwaysIncludeDate:r,compress:u,fileNameSep:o})=>{let i=o||".";const s=Fc.join(e.dir,e.name),c=t=>t+e.ext,a=(e,t,r)=>!n&&r||!t?e:e+i+t,l=(e,t,n)=>(t>0||r)&&n?e+i+n:e,f=(e,t)=>t&&u?e+".gz":e,d=t?[l,a,c,f]:[c,l,a,f];return({date:e,index:t})=>(Cc(`_formatFileName: date=${e}, index=${t}`),d.reduce(((n,r)=>r(n,t,e)),s))},Tc=({file:e,keepFileExt:t,pattern:n,fileNameSep:r})=>{let u=r||".";const o="__NOT_MATCHING__";let i=[(e,t)=>e.endsWith(".gz")?(gc("it is gzipped"),t.isCompressed=!0,e.slice(0,-1*".gz".length)):e,t?t=>t.startsWith(e.name)&&t.endsWith(e.ext)?(gc("it starts and ends with the right things"),t.slice(e.name.length+1,-1*e.ext.length)):o:t=>t.startsWith(e.base)?(gc("it starts with the right things"),t.slice(e.base.length+1)):o,n?(e,t)=>{const r=e.split(u);let o=r[r.length-1];gc("items: ",r,", indexStr: ",o);let i=e;void 0!==o&&o.match(/^\d+$/)?(i=e.slice(0,-1*(o.length+1)),gc(`dateStr is ${i}`),n&&!i&&(i=o,o="0")):o="0";try{const r=Ac.parse(n,i,new Date(0,0));return Ac.asString(n,r)!==i?e:(t.index=parseInt(o,10),t.date=i,t.timestamp=r.getTime(),"")}catch(t){return gc(`Problem parsing ${i} as ${n}, error was: `,t),e}}:(e,t)=>e.match(/^\d+$/)?(gc("it has an index"),t.index=parseInt(e,10),""):e];return e=>{let t={filename:e,index:0,isCompressed:!1};return i.reduce(((e,n)=>n(e,t)),e)?null:t}},Rc=Oc;var Mc=class extends Nc{constructor(e,t){if(bc(`constructor: creating RollingFileWriteStream. path=${e}`),"string"!=typeof e||0===e.length)throw new Error(`Invalid filename: ${e}`);if(e.endsWith(Bc.sep))throw new Error(`Filename is a directory: ${e}`);0===e.indexOf(`~${Bc.sep}`)&&(e=e.replace("~",Pc.homedir())),super(t),this.options=this._parseOption(t),this.fileObject=Bc.parse(e),""===this.fileObject.dir&&(this.fileObject=Bc.parse(Bc.join(process.cwd(),e))),this.fileFormatter=Ic({file:this.fileObject,alwaysIncludeDate:this.options.alwaysIncludePattern,needsIndex:this.options.maxSize 0`)}else delete n.maxSize;if(n.numBackups||0===n.numBackups){if(n.numBackups<0)throw new Error(`options.numBackups (${n.numBackups}) should be >= 0`);if(n.numBackups>=Number.MAX_SAFE_INTEGER)throw new Error(`options.numBackups (${n.numBackups}) should be < Number.MAX_SAFE_INTEGER`);n.numToKeep=n.numBackups+1}else if(n.numToKeep<=0)throw new Error(`options.numToKeep (${n.numToKeep}) should be > 0`);return bc(`_parseOption: creating stream with option=${JSON.stringify(n)}`),n}_final(e){this.currentFileStream.end("",this.options.encoding,e)}_write(e,t,n){this._shouldRoll().then((()=>{bc(`_write: writing chunk. file=${this.currentFileStream.path} state=${JSON.stringify(this.state)} chunk=${e}`),this.currentFileStream.write(e,t,(t=>{this.state.currentSize+=e.length,n(t)}))}))}async _shouldRoll(){(this._dateChanged()||this._tooBig())&&(bc(`_shouldRoll: rolling because dateChanged? ${this._dateChanged()} or tooBig? ${this._tooBig()}`),await this._roll())}_dateChanged(){return this.state.currentDate&&this.state.currentDate!==xc(this.options.pattern,kc())}_tooBig(){return this.state.currentSize>=this.options.maxSize}_roll(){return bc("_roll: closing the current stream"),new Promise(((e,t)=>{this.currentFileStream.end("",this.options.encoding,(()=>{this._moveOldFiles().then(e).catch(t)}))}))}async _moveOldFiles(){const e=await this._getExistingFiles();for(let t=(this.state.currentDate?e.filter((e=>e.date===this.state.currentDate)):e).length;t>=0;t--){bc(`_moveOldFiles: i = ${t}`);const e=this.fileFormatter({date:this.state.currentDate,index:t}),n=this.fileFormatter({date:this.state.currentDate,index:t+1}),r={compress:this.options.compress&&0===t,mode:this.options.mode};await Rc(e,n,r)}this.state.currentSize=0,this.state.currentDate=this.state.currentDate?xc(this.options.pattern,kc()):null,bc(`_moveOldFiles: finished rolling files. state=${JSON.stringify(this.state)}`),this._renewWriteStream(),await new Promise(((e,t)=>{this.currentFileStream.write("","utf8",(()=>{this._clean().then(e).catch(t)}))}))}async _getExistingFiles(){const e=await _c.readdir(this.fileObject.dir).catch((()=>[]));bc(`_getExistingFiles: files=${e}`);const t=e.map((e=>this.fileNameParser(e))).filter((e=>e)),n=e=>(e.timestamp?e.timestamp:kc().getTime())-e.index;return t.sort(((e,t)=>n(e)-n(t))),t}_renewWriteStream(){const e=this.fileFormatter({date:this.state.currentDate,index:0}),t=e=>{try{return _c.mkdirSync(e,{recursive:!0})}catch(n){if("ENOENT"===n.code)return t(Bc.dirname(e)),t(e);if("EEXIST"!==n.code&&"EROFS"!==n.code)throw n;try{if(_c.statSync(e).isDirectory())return e;throw n}catch(e){throw n}}};t(this.fileObject.dir);const n={flags:this.options.flags,encoding:this.options.encoding,mode:this.options.mode};var r,u;_c.appendFileSync(e,"",(r={...n},u="flags",r["flag"]=r[u],delete r[u],r)),this.currentFileStream=_c.createWriteStream(e,n),this.currentFileStream.on("error",(e=>{this.emit("error",e)}))}async _clean(){const e=await this._getExistingFiles();if(bc(`_clean: numToKeep = ${this.options.numToKeep}, existingFiles = ${e.length}`),bc("_clean: existing files are: ",e),this._tooManyFiles(e.length)){const n=e.slice(0,e.length-this.options.numToKeep).map((e=>Bc.format({dir:this.fileObject.dir,base:e.filename})));await(t=n,bc(`deleteFiles: files to delete: ${t}`),Promise.all(t.map((e=>_c.unlink(e).catch((t=>{bc(`deleteFiles: error when unlinking ${e}, ignoring. Error was ${t}`)}))))))}var t}_tooManyFiles(e){return this.options.numToKeep>0&&e>this.options.numToKeep}};const Lc=Mc;var jc=class extends Lc{constructor(e,t,n,r){r||(r={}),t&&(r.maxSize=t),r.numBackups||0===r.numBackups||(n||0===n||(n=1),r.numBackups=n),super(e,r),this.backups=r.numBackups,this.size=this.options.maxSize}get theStream(){return this.currentFileStream}};const $c=Mc;var Hc={RollingFileWriteStream:Mc,RollingFileStream:jc,DateRollingFileStream:class extends $c{constructor(e,t,n){t&&"object"==typeof t&&(n=t,t=null),n||(n={}),t||(t="yyyy-MM-dd"),n.pattern=t,n.numBackups||0===n.numBackups?n.daysToKeep=n.numBackups:(n.daysToKeep||0===n.daysToKeep?process.emitWarning("options.daysToKeep is deprecated due to the confusion it causes when used together with file size rolling. Please use options.numBackups instead.","DeprecationWarning","streamroller-DEP0001"):n.daysToKeep=1,n.numBackups=n.daysToKeep),super(e,n),this.mode=this.options.mode}get theStream(){return this.currentFileStream}}};const Jc=Nr.exports("log4js:file"),Gc=p.default,Vc=Hc,Uc=E.default.EOL;let Wc=!1;const zc=new Set;function Kc(){zc.forEach((e=>{e.sighupHandler()}))}function qc(e,t,n,r){const u=new Vc.RollingFileStream(e,t,n,r);return u.on("error",(t=>{console.error("log4js.fileAppender - Writing to file %s, error happened ",e,t)})),u.on("drain",(()=>{process.emit("log4js:pause",!1)})),u}Eo.configure=function(e,t){let n=t.basicLayout;return e.layout&&(n=t.layout(e.layout.type,e.layout)),e.mode=e.mode||384,function(e,t,n,r,u,o){e=Gc.normalize(e),Jc("Creating file appender (",e,", ",n,", ",r=r||0===r?r:5,", ",u,", ",o,")");let i=qc(e,n,r,u);const s=function(e){if(i.writable){if(!0===u.removeColor){const t=/\x1b[[0-9;]*m/g;e.data=e.data.map((e=>"string"==typeof e?e.replace(t,""):e))}i.write(t(e,o)+Uc,"utf8")||process.emit("log4js:pause",!0)}};return s.reopen=function(){i.end((()=>{i=qc(e,n,r,u)}))},s.sighupHandler=function(){Jc("SIGHUP handler called."),s.reopen()},s.shutdown=function(e){zc.delete(s),0===zc.size&&Wc&&(process.removeListener("SIGHUP",Kc),Wc=!1),i.end("","utf-8",e)},zc.add(s),Wc||(process.on("SIGHUP",Kc),Wc=!0),s}(e.filename,n,e.maxLogSize,e.backups,e,e.timezoneOffset)};var Yc={};const Xc=Hc,Zc=E.default.EOL;function Qc(e,t,n,r,u){r.maxSize=r.maxLogSize;const o=function(e,t,n){const r=new Xc.DateRollingFileStream(e,t,n);return r.on("error",(t=>{console.error("log4js.dateFileAppender - Writing to file %s, error happened ",e,t)})),r.on("drain",(()=>{process.emit("log4js:pause",!1)})),r}(e,t,r),i=function(e){o.writable&&(o.write(n(e,u)+Zc,"utf8")||process.emit("log4js:pause",!0))};return i.shutdown=function(e){o.end("","utf-8",e)},i}Yc.configure=function(e,t){let n=t.basicLayout;return e.layout&&(n=t.layout(e.layout.type,e.layout)),e.alwaysIncludePattern||(e.alwaysIncludePattern=!1),e.mode=e.mode||384,Qc(e.filename,e.pattern,n,e,e.timezoneOffset)};var ea={};const ta=Nr.exports("log4js:fileSync"),na=p.default,ra=D.default,ua=E.default.EOL||"\n";function oa(e,t){if(ra.existsSync(e))return;const n=ra.openSync(e,t.flags,t.mode);ra.closeSync(n)}class ia{constructor(e,t,n,r){ta("In RollingFileStream"),function(){if(!e||!t||t<=0)throw new Error("You must specify a filename and file size")}(),this.filename=e,this.size=t,this.backups=n,this.options=r,this.currentSize=0,this.currentSize=function(e){let t=0;try{t=ra.statSync(e).size}catch(t){oa(e,r)}return t}(this.filename)}shouldRoll(){return ta("should roll with current size %d, and max size %d",this.currentSize,this.size),this.currentSize>=this.size}roll(e){const t=this,n=new RegExp(`^${na.basename(e)}`);function r(e){return n.test(e)}function u(t){return parseInt(t.substring(`${na.basename(e)}.`.length),10)||0}function o(e,t){return u(e)>u(t)?1:u(e) ${e}.${r+1}`),ra.renameSync(na.join(na.dirname(e),n),`${e}.${r+1}`)}}ta("Rolling, rolling, rolling"),ta("Renaming the old files"),ra.readdirSync(na.dirname(e)).filter(r).sort(o).reverse().forEach(i)}write(e,t){const n=this;ta("in write"),this.shouldRoll()&&(this.currentSize=0,this.roll(this.filename)),ta("writing the chunk to the file"),n.currentSize+=e.length,ra.appendFileSync(n.filename,e)}}ea.configure=function(e,t){let n=t.basicLayout;e.layout&&(n=t.layout(e.layout.type,e.layout));const r={flags:e.flags||"a",encoding:e.encoding||"utf8",mode:e.mode||384};return function(e,t,n,r,u,o){ta("fileSync appender created");const i=function(e,t,n){let r;var u;return t?r=new ia(e,t,n,o):(oa(u=e,o),r={write(e){ra.appendFileSync(u,e)}}),r}(e=na.normalize(e),n,r=r||0===r?r:5);return e=>{i.write(t(e,u)+ua)}}(e.filename,n,e.maxLogSize,e.backups,e.timezoneOffset,r)};var sa={};const ca=Nr.exports("log4js:tcp"),aa=S.default;sa.configure=function(e,t){ca(`configure with config = ${e}`);let n=function(e){return e.serialise()};return e.layout&&(n=t.layout(e.layout.type,e.layout)),function(e,t){let n=!1;const r=[];let u,o=3,i="__LOG4JS__";function s(e){ca("Writing log event to socket"),n=u.write(`${t(e)}${i}`,"utf8")}function c(){let e;for(ca("emptying buffer");e=r.shift();)s(e)}function a(e){n?s(e):(ca("buffering log event because it cannot write at the moment"),r.push(e))}return function t(){ca(`appender creating socket to ${e.host||"localhost"}:${e.port||5e3}`),i=`${e.endMsg||"__LOG4JS__"}`,u=aa.createConnection(e.port||5e3,e.host||"localhost"),u.on("connect",(()=>{ca("socket connected"),c(),n=!0})),u.on("drain",(()=>{ca("drain event received, emptying buffer"),n=!0,c()})),u.on("timeout",u.end.bind(u)),u.on("error",(e=>{ca("connection error",e),n=!1,c()})),u.on("close",t)}(),a.shutdown=function(e){ca("shutdown called"),r.length&&o?(ca("buffer has items, waiting 100ms to empty"),o-=1,setTimeout((()=>{a.shutdown(e)}),100)):(u.removeAllListeners("close"),u.end(e))},a}(e,n)};const la=p.default,fa=Nr.exports("log4js:appenders"),da=tu,Da=eo,pa=gu,Ea=hu,ma=to,ha=new Map;ha.set("console",oo),ha.set("stdout",so),ha.set("stderr",co),ha.set("logLevelFilter",ao),ha.set("categoryFilter",lo),ha.set("noLogFilter",Do),ha.set("file",Eo),ha.set("dateFile",Yc),ha.set("fileSync",ea),ha.set("tcp",sa);const ya=new Map,Ca=(e,t)=>{fa("Loading module from ",e);try{return require(e)}catch(n){return void da.throwExceptionIf(t,"MODULE_NOT_FOUND"!==n.code,`appender "${e}" could not be loaded (error was: ${n})`)}},Fa=new Set,ga=(e,t)=>{if(ya.has(e))return ya.get(e);if(!t.appenders[e])return!1;if(Fa.has(e))throw new Error(`Dependency loop detected for appender ${e}.`);Fa.add(e),fa(`Creating appender ${e}`);const n=Aa(e,t);return Fa.delete(e),ya.set(e,n),n},Aa=(e,t)=>{const n=t.appenders[e],r=n.type.configure?n.type:((e,t)=>ha.get(e)||Ca(`./${e}`,t)||Ca(e,t)||require.main&&Ca(la.join(la.dirname(require.main.filename),e),t)||Ca(la.join(process.cwd(),e),t))(n.type,t);return da.throwExceptionIf(t,da.not(r),`appender "${e}" is not valid (type "${n.type}" could not be found)`),r.appender&&fa(`DEPRECATION: Appender ${n.type} exports an appender function.`),r.shutdown&&fa(`DEPRECATION: Appender ${n.type} exports a shutdown function.`),fa(`${e}: clustering.isMaster ? ${Da.isMaster()}`),fa(`${e}: appenderModule is ${F.default.inspect(r)}`),Da.onlyOnMaster((()=>(fa(`calling appenderModule.configure for ${e} / ${n.type}`),r.configure(ma.modifyConfig(n),Ea,(e=>ga(e,t)),pa))),(()=>{}))},va=e=>{ya.clear(),Fa.clear();const t=[];Object.values(e.categories).forEach((e=>{t.push(...e.appenders)})),Object.keys(e.appenders).forEach((n=>{(t.includes(n)||"tcp-server"===e.appenders[n].type)&&ga(n,e)}))},Sa=()=>{va({appenders:{out:{type:"stdout"}},categories:{default:{appenders:["out"],level:"trace"}}})};Sa(),da.addListener((e=>{da.throwExceptionIf(e,da.not(da.anObject(e.appenders)),'must have a property "appenders" of type object.');const t=Object.keys(e.appenders);da.throwExceptionIf(e,da.not(t.length),"must define at least one appender."),t.forEach((t=>{da.throwExceptionIf(e,da.not(e.appenders[t].type),`appender "${t}" is not valid (must be an object with property "type")`)}))})),da.addListener(va),Au.exports=ya,Au.exports.init=Sa;var wa={exports:{}};!function(e){const t=Nr.exports("log4js:categories"),n=tu,r=gu,u=Au.exports,o=new Map;function i(e,t,n){if(!1===t.inherit)return;const r=n.lastIndexOf(".");if(r<0)return;const u=n.substring(0,r);let o=e.categories[u];o||(o={inherit:!0,appenders:[]}),i(e,o,u),!e.categories[u]&&o.appenders&&o.appenders.length&&o.level&&(e.categories[u]=o),t.appenders=t.appenders||[],t.level=t.level||o.level,o.appenders.forEach((e=>{t.appenders.includes(e)||t.appenders.push(e)})),t.parent=o}function s(e){if(!e.categories)return;Object.keys(e.categories).forEach((t=>{const n=e.categories[t];i(e,n,t)}))}n.addPreProcessingListener((e=>s(e))),n.addListener((e=>{n.throwExceptionIf(e,n.not(n.anObject(e.categories)),'must have a property "categories" of type object.');const t=Object.keys(e.categories);n.throwExceptionIf(e,n.not(t.length),"must define at least one category."),t.forEach((t=>{const o=e.categories[t];n.throwExceptionIf(e,[n.not(o.appenders),n.not(o.level)],`category "${t}" is not valid (must be an object with properties "appenders" and "level")`),n.throwExceptionIf(e,n.not(Array.isArray(o.appenders)),`category "${t}" is not valid (appenders must be an array of appender names)`),n.throwExceptionIf(e,n.not(o.appenders.length),`category "${t}" is not valid (appenders must contain at least one appender name)`),Object.prototype.hasOwnProperty.call(o,"enableCallStack")&&n.throwExceptionIf(e,"boolean"!=typeof o.enableCallStack,`category "${t}" is not valid (enableCallStack must be boolean type)`),o.appenders.forEach((r=>{n.throwExceptionIf(e,n.not(u.get(r)),`category "${t}" is not valid (appender "${r}" is not defined)`)})),n.throwExceptionIf(e,n.not(r.getLevel(o.level)),`category "${t}" is not valid (level "${o.level}" not recognised; valid levels are ${r.levels.join(", ")})`)})),n.throwExceptionIf(e,n.not(e.categories.default),'must define a "default" category.')}));const c=e=>{o.clear();Object.keys(e.categories).forEach((n=>{const i=e.categories[n],s=[];i.appenders.forEach((e=>{s.push(u.get(e)),t(`Creating category ${n}`),o.set(n,{appenders:s,level:r.getLevel(i.level),enableCallStack:i.enableCallStack||!1})}))}))},a=()=>{c({categories:{default:{appenders:["out"],level:"OFF"}}})};a(),n.addListener(c);const l=e=>(t(`configForCategory: searching for config for ${e}`),o.has(e)?(t(`configForCategory: ${e} exists in config, returning it`),o.get(e)):e.indexOf(".")>0?(t(`configForCategory: ${e} has hierarchy, searching for parents`),l(e.substring(0,e.lastIndexOf(".")))):(t("configForCategory: returning config for default category"),l("default")));e.exports=o,e.exports=Object.assign(e.exports,{appendersForCategory:e=>l(e).appenders,getLevelForCategory:e=>l(e).level,setLevelForCategory:(e,n)=>{let r=o.get(e);if(t(`setLevelForCategory: found ${r} for ${e}`),!r){const n=l(e);t(`setLevelForCategory: no config found for category, found ${n} for parents of ${e}`),r={appenders:n.appenders}}r.level=n,o.set(e,r)},getEnableCallStackForCategory:e=>!0===l(e).enableCallStack,setEnableCallStackForCategory:(e,t)=>{l(e).enableCallStack=t},init:a})}(wa);const Oa=Nr.exports("log4js:logger"),ba=Hu,_a=gu,Ba=eo,Pa=wa.exports,ka=tu,xa=/at (?:(.+)\s+\()?(?:(.+?):(\d+)(?::(\d+))?|([^)]+))\)?/;function Na(e,t=4){const n=e.stack.split("\n").slice(t),r=xa.exec(n[0]);return r&&6===r.length?{functionName:r[1],fileName:r[2],lineNumber:parseInt(r[3],10),columnNumber:parseInt(r[4],10),callStack:n.join("\n")}:null}class Ia{constructor(e){if(!e)throw new Error("No category provided.");this.category=e,this.context={},this.parseCallStack=Na,Oa(`Logger created (${this.category}, ${this.level})`)}get level(){return _a.getLevel(Pa.getLevelForCategory(this.category),_a.TRACE)}set level(e){Pa.setLevelForCategory(this.category,_a.getLevel(e,this.level))}get useCallStack(){return Pa.getEnableCallStackForCategory(this.category)}set useCallStack(e){Pa.setEnableCallStackForCategory(this.category,!0===e)}log(e,...t){let n=_a.getLevel(e);n||(this._log(_a.WARN,"log4js:logger.log: invalid value for log-level as first parameter given: ",e),n=_a.INFO),this.isLevelEnabled(n)&&this._log(n,t)}isLevelEnabled(e){return this.level.isLessThanOrEqualTo(e)}_log(e,t){Oa(`sending log data (${e}) to appenders`);const n=new ba(this.category,e,t,this.context,this.useCallStack&&this.parseCallStack(new Error));Ba.send(n)}addContext(e,t){this.context[e]=t}removeContext(e){delete this.context[e]}clearContext(){this.context={}}setParseCallStackFunction(e){this.parseCallStack=e}}function Ta(e){const t=_a.getLevel(e),n=t.toString().toLowerCase().replace(/_([a-z])/g,(e=>e[1].toUpperCase())),r=n[0].toUpperCase()+n.slice(1);Ia.prototype[`is${r}Enabled`]=function(){return this.isLevelEnabled(t)},Ia.prototype[n]=function(...e){this.log(t,...e)}}_a.levels.forEach(Ta),ka.addListener((()=>{_a.levels.forEach(Ta)}));var Ra=Ia;const Ma=gu;function La(e){return e.originalUrl||e.url}function ja(e,t){for(let n=0;ne.source?e.source:e));t=new RegExp(n.join("|"))}return t}(t.nolog);return(e,i,s)=>{if(e._logging)return s();if(o&&o.test(e.originalUrl))return s();if(n.isLevelEnabled(r)||"auto"===t.level){const o=new Date,{writeHead:s}=i;e._logging=!0,i.writeHead=(e,t)=>{i.writeHead=s,i.writeHead(e,t),i.__statusCode=e,i.__headers=t||{}},i.on("finish",(()=>{i.responseTime=new Date-o,i.statusCode&&"auto"===t.level&&(r=Ma.INFO,i.statusCode>=300&&(r=Ma.WARN),i.statusCode>=400&&(r=Ma.ERROR)),r=function(e,t,n){let r=t;if(n){const t=n.find((t=>{let n=!1;return n=t.from&&t.to?e>=t.from&&e<=t.to:-1!==t.codes.indexOf(e),n}));t&&(r=Ma.getLevel(t.level,r))}return r}(i.statusCode,r,t.statusRules);const s=function(e,t,n){const r=[];return r.push({token:":url",replacement:La(e)}),r.push({token:":protocol",replacement:e.protocol}),r.push({token:":hostname",replacement:e.hostname}),r.push({token:":method",replacement:e.method}),r.push({token:":status",replacement:t.__statusCode||t.statusCode}),r.push({token:":response-time",replacement:t.responseTime}),r.push({token:":date",replacement:(new Date).toUTCString()}),r.push({token:":referrer",replacement:e.headers.referer||e.headers.referrer||""}),r.push({token:":http-version",replacement:`${e.httpVersionMajor}.${e.httpVersionMinor}`}),r.push({token:":remote-addr",replacement:e.headers["x-forwarded-for"]||e.ip||e._remoteAddress||e.socket&&(e.socket.remoteAddress||e.socket.socket&&e.socket.socket.remoteAddress)}),r.push({token:":user-agent",replacement:e.headers["user-agent"]}),r.push({token:":content-length",replacement:t.getHeader("content-length")||t.__headers&&t.__headers["Content-Length"]||"-"}),r.push({token:/:req\[([^\]]+)]/g,replacement:(t,n)=>e.headers[n.toLowerCase()]}),r.push({token:/:res\[([^\]]+)]/g,replacement:(e,n)=>t.getHeader(n.toLowerCase())||t.__headers&&t.__headers[n]}),(e=>{const t=e.concat();for(let e=0;eja(e,s)));t&&n.log(r,t)}else n.log(r,ja(u,s));t.context&&n.removeContext("res")}))}return s()}},nl=Va;let rl=!1;function ul(e){if(!rl)return;Ua("Received log event ",e);Za.appendersForCategory(e.categoryName).forEach((t=>{t(e)}))}function ol(e){rl&&il();let t=e;return"string"==typeof t&&(t=function(e){Ua(`Loading configuration from ${e}`);try{return JSON.parse(Wa.readFileSync(e,"utf8"))}catch(t){throw new Error(`Problem reading config from file "${e}". Error was ${t.message}`,t)}}(e)),Ua(`Configuration is ${t}`),Ka.configure(za(t)),el.onMessage(ul),rl=!0,sl}function il(e){Ua("Shutdown called. Disabling all log writing."),rl=!1;const t=Array.from(Xa.values());Xa.init(),Za.init();const n=t.reduceRight(((e,t)=>t.shutdown?e+1:e),0);if(0===n)return Ua("No appenders with shutdown functions found."),void 0!==e&&e();let r,u=0;function o(t){r=r||t,u+=1,Ua(`Appender shutdowns complete: ${u} / ${n}`),u>=n&&(Ua("All shutdown functions completed."),e&&e(r))}return Ua(`Found ${n} appenders with shutdown functions.`),t.filter((e=>e.shutdown)).forEach((e=>e.shutdown(o))),null}const sl={getLogger:function(e){return rl||ol(process.env.LOG4JS_CONFIG||{appenders:{out:{type:"stdout"}},categories:{default:{appenders:["out"],level:"OFF"}}}),new Qa(e||"default")},configure:ol,shutdown:il,connectLogger:tl,levels:Ya,addLayout:qa.addLayout,recording:function(){return nl}};var cl=sl,al={};Object.defineProperty(al,"__esModule",{value:!0}),al.levelMap=al.getLevel=al.setCategoriesLevel=al.getConfiguration=al.setConfiguration=void 0;const ll=cl;let fl={appenders:{debug:{type:"stdout",layout:{type:"pattern",pattern:"[%d] > hvigor %p %c %[%m%]"}},info:{type:"stdout",layout:{type:"pattern",pattern:"[%d] > hvigor %[%m%]"}},"no-pattern-info":{type:"stdout",layout:{type:"pattern",pattern:"%m"}},wrong:{type:"stderr",layout:{type:"pattern",pattern:"[%d] > hvigor %[%p: %m%]"}},"just-debug":{type:"logLevelFilter",appender:"debug",level:"debug",maxLevel:"debug"},"just-info":{type:"logLevelFilter",appender:"info",level:"info",maxLevel:"info"},"just-wrong":{type:"logLevelFilter",appender:"wrong",level:"warn",maxLevel:"error"}},categories:{default:{appenders:["just-debug","just-info","just-wrong"],level:"debug"},"no-pattern-info":{appenders:["no-pattern-info"],level:"info"}}};al.setConfiguration=e=>{fl=e};al.getConfiguration=()=>fl;let dl=ll.levels.DEBUG;al.setCategoriesLevel=(e,t)=>{dl=e;const n=fl.categories;for(const r in n)(null==t?void 0:t.includes(r))||Object.prototype.hasOwnProperty.call(n,r)&&(n[r].level=e.levelStr)};al.getLevel=()=>dl,al.levelMap=new Map([["ALL",ll.levels.ALL],["MARK",ll.levels.MARK],["TRACE",ll.levels.TRACE],["DEBUG",ll.levels.DEBUG],["INFO",ll.levels.INFO],["WARN",ll.levels.WARN],["ERROR",ll.levels.ERROR],["FATAL",ll.levels.FATAL],["OFF",ll.levels.OFF]]);var Dl=w&&w.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var u=Object.getOwnPropertyDescriptor(t,n);u&&!("get"in u?!t.__esModule:u.writable||u.configurable)||(u={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,u)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),pl=w&&w.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),El=w&&w.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&Dl(t,e,n);return pl(t,e),t};Object.defineProperty(xr,"__esModule",{value:!0}),xr.evaluateLogLevel=xr.HvigorLogger=void 0;const ml=El(cl),hl=cl,yl=El(F.default),Cl=al;class Fl{constructor(e){ml.configure((0,Cl.getConfiguration)()),this._logger=ml.getLogger(e),this._logger.level=(0,Cl.getLevel)()}static getLogger(e){return new Fl(e)}log(e,...t){this._logger.log(e,...t)}debug(e,...t){this._logger.debug(e,...t)}info(e,...t){this._logger.info(e,...t)}warn(e,...t){void 0!==e&&""!==e&&this._logger.warn(e,...t)}error(e,...t){this._logger.error(e,...t)}_printTaskExecuteInfo(e,t){this.info(`Finished :${e}... after ${t}`)}_printFailedTaskInfo(e){this.error(`Failed :${e}... `)}_printDisabledTaskInfo(e){this.info(`Disabled :${e}... `)}_printUpToDateTaskInfo(e){this.info(`UP-TO-DATE :${e}... `)}errorMessageExit(e,...t){throw new Error(yl.format(e,...t))}errorExit(e,t,...n){t&&this._logger.error(t,n),this._logger.error(e.stack)}setLevel(e,t){(0,Cl.setCategoriesLevel)(e,t),ml.shutdown(),ml.configure((0,Cl.getConfiguration)())}getLevel(){return this._logger.level}configure(e){const t=(0,Cl.getConfiguration)(),n={appenders:{...t.appenders,...e.appenders},categories:{...t.categories,...e.categories}};(0,Cl.setConfiguration)(n),ml.shutdown(),ml.configure(n)}}xr.HvigorLogger=Fl,xr.evaluateLogLevel=function(e,t){t.debug?e.setLevel(hl.levels.DEBUG):t.warn?e.setLevel(hl.levels.WARN):t.error?e.setLevel(hl.levels.ERROR):e.setLevel(hl.levels.INFO)};var gl=w&&w.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(X,"__esModule",{value:!0}),X.parseJsonText=X.parseJsonFile=void 0;const Al=Z,vl=gl(kr),Sl=gl(p.default),wl=gl(E.default),Ol=xr.HvigorLogger.getLogger("parse-json-util");var bl;!function(e){e[e.Char=0]="Char",e[e.EOF=1]="EOF",e[e.Identifier=2]="Identifier"}(bl||(bl={}));let _l,Bl,Pl,kl,xl,Nl,Il="start",Tl=[],Rl=0,Ml=1,Ll=0,jl=!1,$l="default",Hl="'",Jl=1;function Gl(e,t=!1){Bl=String(e),Il="start",Tl=[],Rl=0,Ml=1,Ll=0,kl=void 0,jl=t;do{_l=Vl(),Xl[Il]()}while("eof"!==_l.type);return kl}function Vl(){for($l="default",xl="",Hl="'",Jl=1;;){Nl=Ul();const e=zl[$l]();if(e)return e}}function Ul(){if(Bl[Rl])return String.fromCodePoint(Bl.codePointAt(Rl))}function Wl(){const e=Ul();return"\n"===e?(Ml++,Ll=0):e?Ll+=e.length:Ll++,e&&(Rl+=e.length),e}X.parseJsonFile=function(e,t=!1,n="utf-8"){const r=vl.default.readFileSync(Sl.default.resolve(e),{encoding:n});try{return Gl(r,t)}catch(t){if(t instanceof SyntaxError){const n=t.message.split("at");2===n.length&&Ol.errorMessageExit(`${n[0].trim()}${wl.default.EOL}\t at ${e}:${n[1].trim()}`)}Ol.errorMessageExit(`${e} is not in valid JSON/JSON5 format.`)}},X.parseJsonText=Gl;const zl={default(){switch(Nl){case"/":return Wl(),void($l="comment");case void 0:return Wl(),Kl("eof")}if(!Al.JudgeUtil.isIgnoreChar(Nl)&&!Al.JudgeUtil.isSpaceSeparator(Nl))return zl[Il]();Wl()},start(){$l="value"},beforePropertyName(){switch(Nl){case"$":case"_":return xl=Wl(),void($l="identifierName");case"\\":return Wl(),void($l="identifierNameStartEscape");case"}":return Kl("punctuator",Wl());case'"':case"'":return Hl=Nl,Wl(),void($l="string")}if(Al.JudgeUtil.isIdStartChar(Nl))return xl+=Wl(),void($l="identifierName");throw tf(bl.Char,Wl())},afterPropertyName(){if(":"===Nl)return Kl("punctuator",Wl());throw tf(bl.Char,Wl())},beforePropertyValue(){$l="value"},afterPropertyValue(){switch(Nl){case",":case"}":return Kl("punctuator",Wl())}throw tf(bl.Char,Wl())},beforeArrayValue(){if("]"===Nl)return Kl("punctuator",Wl());$l="value"},afterArrayValue(){switch(Nl){case",":case"]":return Kl("punctuator",Wl())}throw tf(bl.Char,Wl())},end(){throw tf(bl.Char,Wl())},comment(){switch(Nl){case"*":return Wl(),void($l="multiLineComment");case"/":return Wl(),void($l="singleLineComment")}throw tf(bl.Char,Wl())},multiLineComment(){switch(Nl){case"*":return Wl(),void($l="multiLineCommentAsterisk");case void 0:throw tf(bl.Char,Wl())}Wl()},multiLineCommentAsterisk(){switch(Nl){case"*":return void Wl();case"/":return Wl(),void($l="default");case void 0:throw tf(bl.Char,Wl())}Wl(),$l="multiLineComment"},singleLineComment(){switch(Nl){case"\n":case"\r":case"\u2028":case"\u2029":return Wl(),void($l="default");case void 0:return Wl(),Kl("eof")}Wl()},value(){switch(Nl){case"{":case"[":return Kl("punctuator",Wl());case"n":return Wl(),ql("ull"),Kl("null",null);case"t":return Wl(),ql("rue"),Kl("boolean",!0);case"f":return Wl(),ql("alse"),Kl("boolean",!1);case"-":case"+":return"-"===Wl()&&(Jl=-1),void($l="numerical");case".":case"0":case"I":case"N":return void($l="numerical");case'"':case"'":return Hl=Nl,Wl(),xl="",void($l="string")}if(void 0===Nl||!Al.JudgeUtil.isDigitWithoutZero(Nl))throw tf(bl.Char,Wl());$l="numerical"},numerical(){switch(Nl){case".":return xl=Wl(),void($l="decimalPointLeading");case"0":return xl=Wl(),void($l="zero");case"I":return Wl(),ql("nfinity"),Kl("numeric",Jl*(1/0));case"N":return Wl(),ql("aN"),Kl("numeric",NaN)}if(void 0!==Nl&&Al.JudgeUtil.isDigitWithoutZero(Nl))return xl=Wl(),void($l="decimalInteger");throw tf(bl.Char,Wl())},zero(){switch(Nl){case".":case"e":case"E":return void($l="decimal");case"x":case"X":return xl+=Wl(),void($l="hexadecimal")}return Kl("numeric",0)},decimalInteger(){switch(Nl){case".":case"e":case"E":return void($l="decimal")}if(!Al.JudgeUtil.isDigit(Nl))return Kl("numeric",Jl*Number(xl));xl+=Wl()},decimal(){switch(Nl){case".":xl+=Wl(),$l="decimalFraction";break;case"e":case"E":xl+=Wl(),$l="decimalExponent"}},decimalPointLeading(){if(Al.JudgeUtil.isDigit(Nl))return xl+=Wl(),void($l="decimalFraction");throw tf(bl.Char,Wl())},decimalFraction(){switch(Nl){case"e":case"E":return xl+=Wl(),void($l="decimalExponent")}if(!Al.JudgeUtil.isDigit(Nl))return Kl("numeric",Jl*Number(xl));xl+=Wl()},decimalExponent(){switch(Nl){case"+":case"-":return xl+=Wl(),void($l="decimalExponentSign")}if(Al.JudgeUtil.isDigit(Nl))return xl+=Wl(),void($l="decimalExponentInteger");throw tf(bl.Char,Wl())},decimalExponentSign(){if(Al.JudgeUtil.isDigit(Nl))return xl+=Wl(),void($l="decimalExponentInteger");throw tf(bl.Char,Wl())},decimalExponentInteger(){if(!Al.JudgeUtil.isDigit(Nl))return Kl("numeric",Jl*Number(xl));xl+=Wl()},hexadecimal(){if(Al.JudgeUtil.isHexDigit(Nl))return xl+=Wl(),void($l="hexadecimalInteger");throw tf(bl.Char,Wl())},hexadecimalInteger(){if(!Al.JudgeUtil.isHexDigit(Nl))return Kl("numeric",Jl*Number(xl));xl+=Wl()},identifierNameStartEscape(){if("u"!==Nl)throw tf(bl.Char,Wl());Wl();const e=Yl();switch(e){case"$":case"_":break;default:if(!Al.JudgeUtil.isIdStartChar(e))throw tf(bl.Identifier)}xl+=e,$l="identifierName"},identifierName(){switch(Nl){case"$":case"_":case"‌":case"‍":return void(xl+=Wl());case"\\":return Wl(),void($l="identifierNameEscape")}if(!Al.JudgeUtil.isIdContinueChar(Nl))return Kl("identifier",xl);xl+=Wl()},identifierNameEscape(){if("u"!==Nl)throw tf(bl.Char,Wl());Wl();const e=Yl();switch(e){case"$":case"_":case"‌":case"‍":break;default:if(!Al.JudgeUtil.isIdContinueChar(e))throw tf(bl.Identifier)}xl+=e,$l="identifierName"},string(){switch(Nl){case"\\":return Wl(),void(xl+=function(){const e=Ul(),t=function(){switch(Ul()){case"b":return Wl(),"\b";case"f":return Wl(),"\f";case"n":return Wl(),"\n";case"r":return Wl(),"\r";case"t":return Wl(),"\t";case"v":return Wl(),"\v"}return}();if(t)return t;switch(e){case"0":if(Wl(),Al.JudgeUtil.isDigit(Ul()))throw tf(bl.Char,Wl());return"\0";case"x":return Wl(),function(){let e="",t=Ul();if(!Al.JudgeUtil.isHexDigit(t))throw tf(bl.Char,Wl());if(e+=Wl(),t=Ul(),!Al.JudgeUtil.isHexDigit(t))throw tf(bl.Char,Wl());return e+=Wl(),String.fromCodePoint(parseInt(e,16))}();case"u":return Wl(),Yl();case"\n":case"\u2028":case"\u2029":return Wl(),"";case"\r":return Wl(),"\n"===Ul()&&Wl(),""}if(void 0===e||Al.JudgeUtil.isDigitWithoutZero(e))throw tf(bl.Char,Wl());return Wl()}());case'"':case"'":if(Nl===Hl){const e=Kl("string",xl);return Wl(),e}return void(xl+=Wl());case"\n":case"\r":case void 0:throw tf(bl.Char,Wl());case"\u2028":case"\u2029":!function(e){Ol.warn(`JSON5: '${ef(e)}' in strings is not valid ECMAScript; consider escaping.`)}(Nl)}xl+=Wl()}};function Kl(e,t){return{type:e,value:t,line:Ml,column:Ll}}function ql(e){for(const t of e){if(Ul()!==t)throw tf(bl.Char,Wl());Wl()}}function Yl(){let e="",t=4;for(;t-- >0;){const t=Ul();if(!Al.JudgeUtil.isHexDigit(t))throw tf(bl.Char,Wl());e+=Wl()}return String.fromCodePoint(parseInt(e,16))}const Xl={start(){if("eof"===_l.type)throw tf(bl.EOF);Zl()},beforePropertyName(){switch(_l.type){case"identifier":case"string":return Pl=_l.value,void(Il="afterPropertyName");case"punctuator":return void Ql();case"eof":throw tf(bl.EOF)}},afterPropertyName(){if("eof"===_l.type)throw tf(bl.EOF);Il="beforePropertyValue"},beforePropertyValue(){if("eof"===_l.type)throw tf(bl.EOF);Zl()},afterPropertyValue(){if("eof"===_l.type)throw tf(bl.EOF);switch(_l.value){case",":return void(Il="beforePropertyName");case"}":Ql()}},beforeArrayValue(){if("eof"===_l.type)throw tf(bl.EOF);"punctuator"!==_l.type||"]"!==_l.value?Zl():Ql()},afterArrayValue(){if("eof"===_l.type)throw tf(bl.EOF);switch(_l.value){case",":return void(Il="beforeArrayValue");case"]":Ql()}},end(){}};function Zl(){const e=function(){let e;switch(_l.type){case"punctuator":switch(_l.value){case"{":e={};break;case"[":e=[]}break;case"null":case"boolean":case"numeric":case"string":e=_l.value}return e}();if(jl&&"object"==typeof e&&(e._line=Ml,e._column=Ll),void 0===kl)kl=e;else{const t=Tl[Tl.length-1];Array.isArray(t)?jl&&"object"!=typeof e?t.push({value:e,_line:Ml,_column:Ll}):t.push(e):t[Pl]=jl&&"object"!=typeof e?{value:e,_line:Ml,_column:Ll}:e}!function(e){if(e&&"object"==typeof e)Tl.push(e),Il=Array.isArray(e)?"beforeArrayValue":"beforePropertyName";else{const e=Tl[Tl.length-1];Il=e?Array.isArray(e)?"afterArrayValue":"afterPropertyValue":"end"}}(e)}function Ql(){Tl.pop();const e=Tl[Tl.length-1];Il=e?Array.isArray(e)?"afterArrayValue":"afterPropertyValue":"end"}function ef(e){const t={"'":"\\'",'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\v":"\\v","\0":"\\0","\u2028":"\\u2028","\u2029":"\\u2029"};if(t[e])return t[e];if(e<" "){const t=e.charCodeAt(0).toString(16);return`\\x${`00${t}`.substring(t.length)}`}return e}function tf(e,t){let n="";switch(e){case bl.Char:n=void 0===t?`JSON5: invalid end of input at ${Ml}:${Ll}`:`JSON5: invalid character '${ef(t)}' at ${Ml}:${Ll}`;break;case bl.EOF:n=`JSON5: invalid end of input at ${Ml}:${Ll}`;break;case bl.Identifier:Ll-=5,n=`JSON5: invalid identifier character at ${Ml}:${Ll}`}const r=new nf(n);return r.lineNumber=Ml,r.columnNumber=Ll,r}class nf extends SyntaxError{}var rf=w&&w.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var u=Object.getOwnPropertyDescriptor(t,n);u&&!("get"in u?!t.__esModule:u.writable||u.configurable)||(u={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,u)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),uf=w&&w.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),of=w&&w.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&rf(t,e,n);return uf(t,e),t};Object.defineProperty(Y,"__esModule",{value:!0});var sf=Y.cleanWorkSpace=Ff=Y.executeInstallHvigor=yf=Y.isHvigorInstalled=mf=Y.isAllDependenciesInstalled=void 0;const cf=of(D.default),af=of(p.default),lf=b,ff=j,df=$,Df=X;let pf,Ef;var mf=Y.isAllDependenciesInstalled=function(){function e(e){const t=null==e?void 0:e.dependencies;return void 0===t?0:Object.getOwnPropertyNames(t).length}if(pf=gf(),Ef=Af(),e(pf)+1!==e(Ef))return!1;for(const e in null==pf?void 0:pf.dependencies)if(!(0,ff.hasNpmPackInPaths)(e,[lf.HVIGOR_PROJECT_DEPENDENCIES_HOME])||!hf(e,pf,Ef))return!1;return!0};function hf(e,t,n){return void 0!==n.dependencies&&(0,ff.offlinePluginConversion)(lf.HVIGOR_PROJECT_ROOT_DIR,t.dependencies[e])===n.dependencies[e]}var yf=Y.isHvigorInstalled=function(){return pf=gf(),Ef=Af(),(0,ff.hasNpmPackInPaths)(lf.HVIGOR_ENGINE_PACKAGE_NAME,[lf.HVIGOR_PROJECT_DEPENDENCIES_HOME])&&(0,ff.offlinePluginConversion)(lf.HVIGOR_PROJECT_ROOT_DIR,pf.hvigorVersion)===Ef.dependencies[lf.HVIGOR_ENGINE_PACKAGE_NAME]};const Cf={cwd:lf.HVIGOR_PROJECT_DEPENDENCIES_HOME,stdio:["inherit","inherit","inherit"]};var Ff=Y.executeInstallHvigor=function(){(0,df.logInfoPrintConsole)("Hvigor installing...");const e={dependencies:{}};e.dependencies[lf.HVIGOR_ENGINE_PACKAGE_NAME]=(0,ff.offlinePluginConversion)(lf.HVIGOR_PROJECT_ROOT_DIR,pf.hvigorVersion);try{cf.mkdirSync(lf.HVIGOR_PROJECT_DEPENDENCIES_HOME,{recursive:!0});const t=af.resolve(lf.HVIGOR_PROJECT_DEPENDENCIES_HOME,lf.DEFAULT_PACKAGE_JSON);cf.writeFileSync(t,JSON.stringify(e))}catch(e){(0,df.logErrorAndExit)(e)}!function(){const e=["config","set","store-dir",lf.HVIGOR_PNPM_STORE_PATH];(0,ff.executeCommand)(lf.HVIGOR_WRAPPER_PNPM_SCRIPT_PATH,e,Cf)}(),(0,ff.executeCommand)(lf.HVIGOR_WRAPPER_PNPM_SCRIPT_PATH,["install"],Cf)};function gf(){const e=af.resolve(lf.HVIGOR_PROJECT_WRAPPER_HOME,lf.DEFAULT_HVIGOR_CONFIG_JSON_FILE_NAME);return cf.existsSync(e)||(0,df.logErrorAndExit)(`Error: Hvigor config file ${e} does not exist.`),(0,Df.parseJsonFile)(e)}function Af(){return cf.existsSync(lf.HVIGOR_PROJECT_DEPENDENCY_PACKAGE_JSON_PATH)?(0,Df.parseJsonFile)(lf.HVIGOR_PROJECT_DEPENDENCY_PACKAGE_JSON_PATH):{dependencies:{}}}sf=Y.cleanWorkSpace=function(){if((0,df.logInfoPrintConsole)("Hvigor cleaning..."),!cf.existsSync(lf.HVIGOR_PROJECT_DEPENDENCIES_HOME))return;const e=cf.readdirSync(lf.HVIGOR_PROJECT_DEPENDENCIES_HOME);if(e&&0!==e.length){cf.existsSync(lf.HVIGOR_BOOT_JS_FILE_PATH)&&(0,ff.executeCommand)(process.argv[0],[lf.HVIGOR_BOOT_JS_FILE_PATH,"--stop-daemon"],{});try{e.forEach((e=>{cf.rmSync(af.resolve(lf.HVIGOR_PROJECT_DEPENDENCIES_HOME,e),{recursive:!0})}))}catch(e){(0,df.logErrorAndExit)(`The hvigor build tool cannot be installed. Please manually clear the workspace directory and synchronize the project again.\n\n Workspace Path: ${lf.HVIGOR_PROJECT_DEPENDENCIES_HOME}.`)}}};var vf={},Sf=w&&w.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var u=Object.getOwnPropertyDescriptor(t,n);u&&!("get"in u?!t.__esModule:u.writable||u.configurable)||(u={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,u)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),wf=w&&w.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),Of=w&&w.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&Sf(t,e,n);return wf(t,e),t};Object.defineProperty(vf,"__esModule",{value:!0});var bf=vf.executeBuild=void 0;const _f=b,Bf=Of(D.default),Pf=Of(p.default),kf=$;bf=vf.executeBuild=function(){const e=Pf.resolve(_f.HVIGOR_PROJECT_DEPENDENCIES_HOME,"node_modules","@ohos","hvigor","bin","hvigor.js");try{const t=Bf.realpathSync(e);require(t)}catch(t){(0,kf.logErrorAndExit)(`Error: ENOENT: no such file ${e},delete ${_f.HVIGOR_PROJECT_DEPENDENCIES_HOME} and retry.`)}},function(){if(O.checkNpmConifg(),O.environmentHandler(),O.isPnpmAvailable()||O.executeInstallPnpm(),yf()&&mf())bf();else{sf();try{Ff()}catch(e){return void sf()}bf()}}(); \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/hvigorfile.ts b/UIcompare/component/code/polygontest/hvigorfile.ts new file mode 100644 index 0000000..6478186 --- /dev/null +++ b/UIcompare/component/code/polygontest/hvigorfile.ts @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +export { appTasks } from '@ohos/hvigor-ohos-plugin'; \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/hvigorw b/UIcompare/component/code/polygontest/hvigorw new file mode 100644 index 0000000..9b8eb6f --- /dev/null +++ b/UIcompare/component/code/polygontest/hvigorw @@ -0,0 +1,63 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +#!/bin/bash + +# ---------------------------------------------------------------------------- +# Hvigor startup script, version 1.0.0 +# +# Required ENV vars: +# ------------------ +# NODE_HOME - location of a Node home dir +# or +# Add /usr/local/nodejs/bin to the PATH environment variable +# ---------------------------------------------------------------------------- + +HVIGOR_APP_HOME=$(dirname $(readlink -f $0)) +HVIGOR_WRAPPER_SCRIPT=${HVIGOR_APP_HOME}/hvigor/hvigor-wrapper.js +warn() { + echo "" + echo -e "\033[1;33m`date '+[%Y-%m-%d %H:%M:%S]'`$@\033[0m" +} + +error() { + echo "" + echo -e "\033[1;31m`date '+[%Y-%m-%d %H:%M:%S]'`$@\033[0m" +} + +fail() { + error "$@" + exit 1 +} + +# Determine node to start hvigor wrapper script +if [ -n "${NODE_HOME}" ];then + EXECUTABLE_NODE="${NODE_HOME}/bin/node" + if [ ! -x "$EXECUTABLE_NODE" ];then + fail "ERROR: NODE_HOME is set to an invalid directory,check $NODE_HOME\n\nPlease set NODE_HOME in your environment to the location where your nodejs installed" + fi +else + EXECUTABLE_NODE="node" + which ${EXECUTABLE_NODE} > /dev/null 2>&1 || fail "ERROR: NODE_HOME is not set and not 'node' command found in your path" +fi + +# Check hvigor wrapper script +if [ ! -r "$HVIGOR_WRAPPER_SCRIPT" ];then + fail "ERROR: Couldn't find hvigor/hvigor-wrapper.js in ${HVIGOR_APP_HOME}" +fi + +# start hvigor-wrapper script +exec "${EXECUTABLE_NODE}" \ + "${HVIGOR_WRAPPER_SCRIPT}" "$@" diff --git a/UIcompare/component/code/polygontest/hvigorw.bat b/UIcompare/component/code/polygontest/hvigorw.bat new file mode 100644 index 0000000..1f8e7bd --- /dev/null +++ b/UIcompare/component/code/polygontest/hvigorw.bat @@ -0,0 +1,79 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Hvigor startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +set WRAPPER_MODULE_PATH=%APP_HOME%\hvigor\hvigor-wrapper.js +set NODE_EXE=node.exe + +goto start + +:start +@rem Find node.exe +if defined NODE_HOME goto findNodeFromNodeHome + +%NODE_EXE% --version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. +echo. +echo Please set the NODE_HOME variable in your environment to match the +echo location of your NodeJs installation. + +goto fail + +:findNodeFromNodeHome +set NODE_HOME=%NODE_HOME:"=% +set NODE_EXE_PATH=%NODE_HOME%/%NODE_EXE% + +if exist "%NODE_EXE_PATH%" goto execute +echo. +echo ERROR: NODE_HOME is not set and no 'node' command could be found in your PATH. +echo. +echo Please set the NODE_HOME variable in your environment to match the +echo location of your NodeJs installation. + +goto fail + +:execute +@rem Execute hvigor +"%NODE_EXE%" %WRAPPER_MODULE_PATH% %* + +if "%ERRORLEVEL%" == "0" goto hvigorwEnd + +:fail +exit /b 1 + +:hvigorwEnd +if "%OS%" == "Windows_NT" endlocal + +:end diff --git a/UIcompare/component/code/polygontest/local.properties b/UIcompare/component/code/polygontest/local.properties new file mode 100644 index 0000000..9ccb207 --- /dev/null +++ b/UIcompare/component/code/polygontest/local.properties @@ -0,0 +1,9 @@ +# This file is automatically generated by DevEco Studio. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file should *NOT* be checked into Version Control Systems, +# as it contains information specific to your local configuration. +# +# For customization when using a Version Control System, please read the header note. +hwsdk.dir=C:/Users/qiaochenl/AppData/Local/Huawei/Sdk +nodejs.dir=C:/Users/qiaochenl/nodejs diff --git a/UIcompare/component/code/polygontest/oh-package-lock.json5 b/UIcompare/component/code/polygontest/oh-package-lock.json5 new file mode 100644 index 0000000..58d8f4a --- /dev/null +++ b/UIcompare/component/code/polygontest/oh-package-lock.json5 @@ -0,0 +1,29 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +{ + "lockfileVersion": 1, + "ATTENTION": "THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.", + "specifiers": { + "@ohos/hypium@1.0.6": "@ohos/hypium@1.0.6", + "@ohos/hypium@^1.0.6": "@ohos/hypium@1.0.6" + }, + "packages": { + "@ohos/hypium@1.0.6": { + "resolved": "https://repo.harmonyos.com/ohpm/@ohos/hypium/-/hypium-1.0.6.tgz", + "integrity": "sha512-bb3DWeWhYrFqj9mPFV3yZQpkm36kbcK+YYaeY9g292QKSjOdmhEIQR2ULPvyMsgSR4usOBf5nnYrDmaCCXirgQ==" + } + } +} \ No newline at end of file diff --git a/UIcompare/component/code/polygontest/oh-package.json5 b/UIcompare/component/code/polygontest/oh-package.json5 new file mode 100644 index 0000000..76f8686 --- /dev/null +++ b/UIcompare/component/code/polygontest/oh-package.json5 @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2023 iSoftStone Information Technology (Group) 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. + */ + +{ + "license": "", + "devDependencies": { + "@ohos/hypium": "1.0.6" + }, + "author": "", + "name": "polygontest", + "description": "Please describe the basic information.", + "main": "", + "version": "1.0.0", + "dependencies": {} +}