@ohos-cpf/3rdloop 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +244 -244
- package/bin/3rdloop.mjs +46 -46
- package/lib/cli.js +781 -781
- package/lib/config-cmd.js +451 -451
- package/lib/config.js +318 -318
- package/lib/doctor.js +113 -113
- package/lib/exit-codes.js +30 -30
- package/lib/opencode.js +155 -155
- package/lib/orch.js +426 -426
- package/lib/queries.js +263 -263
- package/lib/step.js +325 -325
- package/lib/ui.js +222 -222
- package/lib/update.js +279 -279
- package/lib/workflow.js +308 -308
- package/lib/workflows.js +131 -131
- package/package.json +50 -50
- package/vendor/Server/Agent/SkillSelector/README.md +343 -343
- package/vendor/Server/Agent/SkillSelector/core/Agent.js +207 -207
- package/vendor/Server/Agent/SkillSelector/index.js +14 -14
- package/vendor/Server/Agent/SkillSelector/llm/llmClient.js +313 -313
- package/vendor/Server/Agent/SkillSelector/llm/prompts.js +161 -161
- package/vendor/Server/Agent/SkillSelector/llm/reactSteps.js +144 -144
- package/vendor/Server/Agent/SkillSelector/matcher/fuzzyMatcher.js +433 -433
- package/vendor/Server/Agent/SkillSelector/scanner/skillScanner.js +382 -382
- package/vendor/Server/Agent/SkillSelector/utils/actionWords.js +59 -59
- package/vendor/Server/Brain/AnalysisStrategies.js +422 -422
- package/vendor/Server/Brain/Brain.js +686 -686
- package/vendor/Server/Brain/DecompositionStrategies.js +621 -621
- package/vendor/Server/Brain/PlanPersistence.js +196 -196
- package/vendor/Server/Brain/SkillExecutor.js +251 -251
- package/vendor/Server/Brain/index.js +11 -11
- package/vendor/Server/CLI/cli.js +275 -275
- package/vendor/Server/CLI/deveco-code/index.js +71 -71
- package/vendor/Server/CLI/deveco-code.js +5 -5
- package/vendor/Server/CLI/opencode/index.js +817 -818
- package/vendor/Server/CLI/opencode.js +5 -5
- package/vendor/Server/DbUse/MessageArchive.js +61 -61
- package/vendor/Server/DbUse/StorageManager.js +107 -107
- package/vendor/Server/DbUse/adapters/BaseAdapter.js +94 -94
- package/vendor/Server/DbUse/adapters/FileAdapter.js +138 -138
- package/vendor/Server/DbUse/adapters/JsonAdapter.js +138 -138
- package/vendor/Server/DbUse/adapters/JsonlAdapter.js +114 -114
- package/vendor/Server/DbUse/adapters/SqliteAdapter.js +157 -157
- package/vendor/Server/DbUse/index.js +160 -160
- package/vendor/Server/DbUse/stores/SessionStore.js +279 -279
- package/vendor/Server/DbUse/stores/TaskExecutionStore.js +133 -133
- package/vendor/Server/DbUse/stores/TaskRegistryStore.js +262 -262
- package/vendor/Server/DbUse/stores/TaskStepStore.js +279 -279
- package/vendor/Server/FlexRunner/FlexRunner.js +1759 -1759
- package/vendor/Server/FlexRunner/index.js +12 -12
- package/vendor/Server/Knowledge/KnowledgeImporter.js +523 -523
- package/vendor/Server/Knowledge/KnowledgeManager.js +341 -341
- package/vendor/Server/Knowledge/index.js +33 -33
- package/vendor/Server/LoopEngine/LoopEngine.js +1133 -1133
- package/vendor/Server/LoopEngine/index.js +11 -11
- package/vendor/Server/Orchestrator/Orchestrator.js +0 -3
- package/vendor/Server/Orchestrator/StepNode.js +312 -312
- package/vendor/Server/Orchestrator/index.js +13 -13
- package/vendor/Server/Routes/controllers/BrainController.js +241 -241
- package/vendor/Server/Routes/controllers/FlexRunnerController.js +1125 -1125
- package/vendor/Server/Routes/controllers/HealthController.js +44 -44
- package/vendor/Server/Routes/controllers/KnowledgeImportController.js +355 -355
- package/vendor/Server/Routes/controllers/LoopEngineController.js +788 -788
- package/vendor/Server/Routes/controllers/StatsController.js +57 -57
- package/vendor/Server/Routes/controllers/StreamController.js +67 -67
- package/vendor/Server/Routes/library/logger.js +179 -179
- package/vendor/Server/Routes/library/zipArchive.js +172 -172
- package/vendor/Server/Routes/router/Router.js +204 -204
- package/vendor/Server/Routes/routes/brain.js +47 -47
- package/vendor/Server/Routes/routes/flexrunner.js +72 -72
- package/vendor/Server/Routes/routes/health.js +28 -28
- package/vendor/Server/Routes/routes/index.js +57 -57
- package/vendor/Server/Routes/routes/knowledge.js +55 -55
- package/vendor/Server/Routes/routes/loopengine.js +58 -58
- package/vendor/Server/Routes/routes/orchestrator.js +61 -61
- package/vendor/Server/Routes/routes/registry.js +97 -97
- package/vendor/Server/Routes/routes/stats.js +23 -23
- package/vendor/Server/Routes/routes/stream.js +30 -30
- package/vendor/Server/Routes/server.js +203 -203
- package/vendor/Server/Routes/sse/SseHub.js +308 -308
- package/vendor/Server/Skills/acceptance-check/SKILL.md +191 -191
- package/vendor/Server/Skills/acceptance-check/references/PHASE1_ARTIFACT_COLLECTION.md +52 -52
- package/vendor/Server/Skills/acceptance-check/references/PHASE2_CRITERIA_EVALUATION.md +77 -77
- package/vendor/Server/Skills/acceptance-check/references/PHASE2_EVIDENCE_VERIFICATION.md +70 -70
- package/vendor/Server/Skills/arkts-code-check/SKILL.md +320 -320
- package/vendor/Server/Skills/arkts-code-check/references/CODE_CHECK_GUIDE.md +210 -210
- package/vendor/Server/Skills/arkts-code-check/references/FILE_TYPE_GUIDE.md +28 -28
- package/vendor/Server/Skills/arkts-code-check/references/PHASE1_INFO_COLLECTION.md +233 -233
- package/vendor/Server/Skills/arkts-code-check/references/REPORT_TEMPLATE.md +219 -219
- package/vendor/Server/Skills/arkts-library-compile-validate/SKILL.md +328 -328
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/build.ps1 +93 -93
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/code-linter.cjs +432 -432
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/migrate.cjs +851 -851
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/ohpm-switch.cjs +788 -788
- package/vendor/Server/Skills/arkts-library-demo-code/SKILL.md +291 -291
- package/vendor/Server/Skills/arkts-library-demo-code/references/API_SIGNATURE_CHECKS.md +68 -68
- package/vendor/Server/Skills/arkts-library-demo-code/references/BUILD_VALIDATION.md +184 -184
- package/vendor/Server/Skills/arkts-library-demo-code/references/CODE_STANDARDS.md +337 -337
- package/vendor/Server/Skills/arkts-library-demo-code/references/EXAMPLES.md +400 -400
- package/vendor/Server/Skills/arkts-library-demo-code/references/SYSTEM_API_LOOKUP.md +98 -98
- package/vendor/Server/Skills/arkts-library-demo-code/references/TEMPLATE.md +544 -544
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/build.ps1 +93 -93
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/code-linter.cjs +432 -432
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/migrate.cjs +851 -851
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/ohpm-switch.cjs +788 -788
- package/vendor/Server/Skills/arkts-library-demo-coverage/SKILL.md +174 -174
- package/vendor/Server/Skills/arkts-library-demo-scenario/SKILL.md +321 -321
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/EXAMPLES.md +100 -100
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/TEMPLATE.md +185 -185
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/SKILL.md +233 -233
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +102 -102
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/CHECK_DIMENSIONS.md +89 -89
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/COMPLIANCE_CHECKLIST.md +62 -62
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/KB_QUERY_GUIDE.md +107 -107
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/MCP_TOOL_DISCOVERY.md +124 -124
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/REPORT_TEMPLATE.md +90 -90
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/SCORING_FORMULA.md +57 -57
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/scripts/validate-skill.cjs +259 -259
- package/vendor/Server/Skills/arkts-library-interface-spec/SKILL.md +97 -97
- package/vendor/Server/Skills/arkts-library-memory-leak-check/SKILL.md +391 -391
- package/vendor/Server/Skills/arkts-library-source-clone/SKILL.md +113 -113
- package/vendor/Server/Skills/arkts-library-stability-check/SKILL.md +312 -312
- package/vendor/Server/Skills/arkts-library-stability-check/assets/REPORT_TEMPLATE.md +154 -154
- package/vendor/Server/Skills/arkts-library-stability-check/references/CHECKLIST.md +165 -165
- package/vendor/Server/Skills/arkts-library-stability-check/references/CODE_EXAMPLES.md +308 -308
- package/vendor/Server/Skills/arkts-library-stability-check/references/SCORING_RULES.md +90 -90
- package/vendor/Server/Skills/arkts-library-stability-check/scripts/validate-skill.cjs +282 -282
- package/vendor/Server/Skills/arkts-library-test-coverage-check/SKILL.md +360 -360
- package/vendor/Server/Skills/arkts-library-test-coverage-check/assets/REPORT_TEMPLATE.md +145 -145
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/CHECKLIST.md +252 -252
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/MCP_TOOL_USAGE.md +114 -114
- package/vendor/Server/Skills/arkts-library-test-coverage-check/scripts/validate-skill.cjs +262 -262
- package/vendor/Server/Skills/arkts-library-xts-code/SKILL.md +455 -455
- package/vendor/Server/Skills/arkts-library-xts-code/assets/report-template.md +60 -60
- package/vendor/Server/Skills/arkts-library-xts-code/references/ACCESS_MODIFIER_PRECHECK.md +76 -76
- package/vendor/Server/Skills/arkts-library-xts-code/references/BUILD_VERIFICATION.md +200 -200
- package/vendor/Server/Skills/arkts-library-xts-code/references/CODE_STANDARDS.md +518 -518
- package/vendor/Server/Skills/arkts-library-xts-code/references/SUBAGENT_PROMPT_TEMPLATE.md +276 -276
- package/vendor/Server/Skills/arkts-library-xts-code/references/SYSTEM_API_LOOKUP.md +92 -92
- package/vendor/Server/Skills/arkts-library-xts-code/references/XTS_TEMPLATE.md +767 -767
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/build.ps1 +93 -93
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/code-linter.cjs +432 -432
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/migrate.cjs +851 -851
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/ohpm-switch.cjs +788 -788
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/precheck-access-modifiers.cjs +221 -221
- package/vendor/Server/Skills/arkts-library-xts-code-fix/SKILL.md +228 -228
- package/vendor/Server/Skills/arkts-library-xts-coverage/SKILL.md +97 -97
- package/vendor/Server/Skills/arkts-library-xts-doc/SKILL.md +194 -194
- package/vendor/Server/Skills/arkts-library-xts-doc/references/EXAMPLES.md +575 -575
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TEMPLATE.md +574 -574
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TESTABILITY_GUIDE.md +182 -182
- package/vendor/Server/Skills/arkts-library-xts-execution/SKILL.md +490 -490
- package/vendor/Server/Skills/arkts-library-xts-execution/references/error-fixing-examples.md +217 -217
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/build.ps1 +93 -93
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/code-linter.cjs +432 -432
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/migrate.cjs +851 -851
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/ohpm-switch.cjs +788 -788
- package/vendor/Server/Skills/flutter-code-check/SKILL.md +299 -299
- package/vendor/Server/Skills/flutter-code-check/assets/OUTPUT_TEMPLATE.md +311 -311
- package/vendor/Server/Skills/flutter-code-check/references/CHECKLIST.md +190 -190
- package/vendor/Server/Skills/flutter-code-check/references/PLATFORMS.md +133 -133
- package/vendor/Server/Skills/flutter-code-check/scripts/validate-skill.cjs +259 -259
- package/vendor/Server/Skills/flutter-interface/README.md +75 -75
- package/vendor/Server/Skills/flutter-interface/SKILL.md +291 -291
- package/vendor/Server/Skills/flutter-interface/references/EXAMPLES.md +336 -336
- package/vendor/Server/Skills/flutter-interface/references/GIT_CLONE_GUIDE.md +190 -190
- package/vendor/Server/Skills/flutter-interface/references/SCRIPT_REFERENCE.md +258 -258
- package/vendor/Server/Skills/flutter-interface/references/TEMPLATE.md +254 -254
- package/vendor/Server/Skills/flutter-library-consistency-check/SKILL.md +517 -517
- package/vendor/Server/Skills/flutter-library-consistency-check/references/CHECKLIST.md +381 -381
- package/vendor/Server/Skills/flutter-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +341 -341
- package/vendor/Server/Skills/flutter-library-consistency-check/references/PLATFORM_LIMITATION_GUIDE.md +71 -71
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/SKILL.md +518 -518
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/references/CHECKLIST.md +406 -406
- package/vendor/Server/Skills/flutter-library-memory-leak-check/SKILL.md +652 -652
- package/vendor/Server/Skills/flutter-library-memory-leak-check/references/CHECKLIST.md +396 -396
- package/vendor/Server/Skills/flutter-library-stability-check/SKILL.md +744 -744
- package/vendor/Server/Skills/flutter-library-stability-check/references/CHECKLIST.md +720 -720
- package/vendor/Server/Skills/flutter-library-test-coverage-check/SKILL.md +414 -414
- package/vendor/Server/Skills/flutter-library-test-coverage-check/assets/REPORT_TEMPLATE.md +150 -150
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/CHECKLIST.md +304 -304
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCORING_RULES.md +265 -265
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCRIPT_USAGE.md +286 -286
- package/vendor/Server/Skills/knowledge-import/SKILL.md +383 -383
- package/vendor/Server/Skills/knowledge-import/references/MCP_TOOL_USAGE.md +165 -165
- package/vendor/Server/Skills/knowledge-import/references/SKILL_LOCATOR_GUIDE.md +91 -91
- package/vendor/Server/Skills/knowledge-import/references/SKILL_OPTIMIZATION_GUIDE.md +127 -127
- package/vendor/Server/Skills/ohos-lib-pr-push/SKILL.md +453 -301
- package/vendor/Server/Skills/ohos-lib-pr-push/assets/PR_CHECKLIST.md +151 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/assets/PR_ISSUE_TEMPLATE.md +257 -105
- package/vendor/Server/Skills/ohos-lib-pr-push/references/GITCODE_API.md +191 -127
- package/vendor/Server/Skills/ohos-lib-pr-push/scripts/gitcode-api.cjs +317 -208
- package/vendor/Server/Skills/rn-code-check/SKILL.md +320 -320
- package/vendor/Server/Skills/rn-code-check/references/API-GUIDE.md +234 -234
- package/vendor/Server/Skills/rn-code-check/references/CHECKLIST.md +188 -188
- package/vendor/Server/Skills/rn-code-check/references/REPORT-TEMPLATE.md +246 -246
- package/vendor/Server/Skills/rn-lib-add-example/SKILL.md +198 -198
- package/vendor/Server/Skills/rn-lib-add-example/references/APP_RENAME_GUIDE.md +40 -40
- package/vendor/Server/Skills/rn-lib-add-example/references/SHELL_ADAPTATION_CHECKLIST.md +78 -78
- package/vendor/Server/Skills/rn-lib-add-example/references/TEMPLATE_REPO_GUIDE.md +70 -70
- package/vendor/Server/Skills/rn-lib-add-example/references/VERIFICATION_GUIDE.md +47 -47
- package/vendor/Server/Skills/rn-lib-add-example/scripts/create-example.cjs +252 -252
- package/vendor/Server/Skills/rn-lib-update-doc/SKILL.md +176 -176
- package/vendor/Server/Skills/rn-lib-update-doc/config.json +5 -5
- package/vendor/Server/Skills/rn-lib-update-doc/references/changelog-template.md +35 -35
- package/vendor/Server/Skills/rn-lib-update-doc/references/format-diff.md +137 -137
- package/vendor/Server/Skills/rn-lib-update-doc/references/link-registry.json +33 -33
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2-overview.md +40 -40
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2.md +429 -429
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/detect-readme-format.cjs +105 -105
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/find-usage-doc.cjs +90 -90
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/link-verify.cjs +213 -213
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-changelog.cjs +73 -73
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-package-meta.cjs +258 -258
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-readme-links.cjs +341 -341
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/resolve-usage-docs.cjs +67 -67
- package/vendor/Server/Skills/rn-library-consistency-check/SKILL.md +299 -299
- package/vendor/Server/Skills/rn-library-consistency-check/assets/REPORT_TEMPLATE.md +293 -293
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_COMPONENT_CHECK_GUIDE.md +857 -857
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_TURBOMODULE_CHECK_GUIDE.md +856 -856
- package/vendor/Server/Skills/rn-library-consistency-check/references/CHECKLIST.md +157 -157
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_COMPONENT_CHECK_GUIDE.md +801 -801
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_TURBOMODULE_CHECK_GUIDE.md +683 -683
- package/vendor/Server/Skills/rn-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +233 -233
- package/vendor/Server/Skills/rn-library-consistency-check/references/NATIVE_COMPONENT_IDENTIFICATION.md +1373 -1373
- package/vendor/Server/Skills/rn-library-consistency-check/references/SCORING_STANDARD.md +220 -220
- package/vendor/Server/Skills/rn-library-consistency-check/scripts/validate-skill.py +245 -245
- package/vendor/Server/Skills/rn-library-documentation-quality-check/SKILL.md +263 -263
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL.md +414 -414
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL_en.md +413 -413
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +311 -311
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CHECK_CHECKLIST.md +355 -355
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CROSS_VALIDATION_GUIDE.md +115 -115
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/DOC_COLLECTION_GUIDE.md +139 -139
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/EXAMPLES.md +586 -586
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/GOTCHAS.md +57 -57
- package/vendor/Server/Skills/rn-library-documentation-quality-check/scripts/validate-skill.py +259 -259
- package/vendor/Server/Skills/rn-library-interface-analyzer/SKILL.md +301 -301
- package/vendor/Server/Skills/rn-library-interface-analyzer/assets/REPORT_TEMPLATE.md +148 -148
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/DOC_ANNOTATION_GUIDE.md +118 -118
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/SCRIPT_USAGE_GUIDE.md +168 -168
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/URL_PARSING_RULES.md +176 -176
- package/vendor/Server/Skills/rn-library-issue-generalizer/SKILL.md +274 -274
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/case-template.md +45 -45
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/rule-template.md +25 -25
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/PR_FETCH_GUIDE.md +61 -61
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/RULE_TEMPLATE_GUIDE.md +165 -165
- package/vendor/Server/Skills/rn-library-issue-generalizer/scripts/fetch-pr-info.py +239 -239
- package/vendor/Server/Skills/rn-library-known-issue-check/SKILL.md +263 -263
- package/vendor/Server/Skills/rn-library-known-issue-check/assets/REPORT_TEMPLATE.md +96 -96
- package/vendor/Server/Skills/rn-library-known-issue-check/references/COMPLIANCE_CHECKLIST.md +57 -57
- package/vendor/Server/Skills/rn-library-known-issue-check/references/INSPECTION_GUIDE.md +99 -99
- package/vendor/Server/Skills/rn-library-known-issue-check/references/PRESCREEN_GUIDE.md +64 -64
- package/vendor/Server/Skills/rn-library-known-issue-check/references/SOURCE_PREP_GUIDE.md +74 -74
- package/vendor/Server/Skills/rn-library-known-issue-check/scripts/validate-known-issue-report.py +164 -164
- package/vendor/Server/Skills/rn-library-memory-leak-check/SKILL.md +356 -339
- package/vendor/Server/Skills/rn-library-memory-leak-check/assets/REPORT_TEMPLATE.md +85 -83
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/CHECKLIST.md +905 -859
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/HARMONY_CODE_PATTERNS.md +124 -122
- package/vendor/Server/Skills/rn-library-memory-leak-check/scripts/scan_harmony_code.py +287 -279
- package/vendor/Server/Skills/rn-library-stability-check/SKILL.md +273 -273
- package/vendor/Server/Skills/rn-library-stability-check/assets/REPORT_TEMPLATE.md +129 -129
- package/vendor/Server/Skills/rn-library-stability-check/references/CHECKLIST.md +581 -581
- package/vendor/Server/Skills/rn-library-stability-check/references/SCORING_RULES.md +138 -138
- package/vendor/Server/Skills/rn-library-stability-check/scripts/scan-harmony-code.py +168 -168
- package/vendor/Server/Skills/rn-library-test-coverage-check/SKILL.md +526 -506
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/CHECKLIST.md +321 -280
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/DEMO_LOCATION.md +221 -221
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/REPORT_TEMPLATE.md +220 -209
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/SCRIPT_USAGE.md +325 -325
- package/vendor/Server/Skills/rn-ohos-xts-generator/SKILL.md +279 -279
- package/vendor/Server/Skills/rn-ohos-xts-generator/assets/TEST_FILE_TEMPLATES.md +404 -404
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_TROUBLESHOOTING.md +185 -185
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_WORKFLOW.md +265 -265
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COMMON_CONFIG.md +189 -189
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/CONFIG_GUIDE.md +203 -203
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COVERAGE_ANALYZER.md +147 -147
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/DESIGN_DOC_GUIDE.md +148 -148
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_FLOW.md +165 -165
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_STRATEGY.md +195 -195
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/HARMONY_SCANNER.md +249 -249
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/JEST_FRAMEWORK.md +235 -235
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/PLATFORM_COMPAT.md +161 -161
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/RN_TEST_PATTERNS.md +413 -413
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/SOURCE_PARSER.md +235 -235
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TEST_CONVENTIONS.md +245 -245
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TROUBLESHOOTING.md +282 -282
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/USAGE_GUIDE.md +251 -251
- package/vendor/Server/Skills/rnoh-cptf-api-test/SKILL.md +469 -469
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/CPTF_TEST_TEMPLATE.md +310 -310
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/DEMO_PAGE_TEMPLATE.md +303 -303
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/CPTF_TEST_GENERATION_GUIDE.md +421 -421
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/DEMO_GENERATION_GUIDE.md +358 -358
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/QUALITY_CHECKLIST.md +114 -114
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/SPEC_PARSING_GUIDE.md +274 -274
- package/vendor/Server/Skills/rnoh-cptf-api-test/scripts/validate-rnoh-cptf-api-test.sh +185 -185
- package/vendor/Server/Skills/rnoh-cptf-demo-test/SKILL.md +191 -191
- package/vendor/Server/Skills/rnoh-cptf-demo-test/assets/TEST_TEMPLATE.md +216 -216
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/CPTF_SETUP.md +107 -107
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/DEMO_ANALYSIS.md +120 -120
- package/vendor/Server/Skills/rnoh-cptf-demo-test/scripts/validate-rnoh-cptf-test.sh +108 -108
- package/vendor/Server/Skills/rnoh-cptf-test-run/SKILL.md +237 -237
- package/vendor/Server/Skills/rnoh-cptf-test-run/references/DEBUG_PLAYBOOK.md +261 -261
- package/vendor/Server/Skills/rnoh-cptf-test-run/scripts/validate-run-env.sh +112 -112
- package/vendor/Server/Skills/rnoh-lib-code-adapt/SKILL.md +497 -497
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/adapt-checklist.md +270 -270
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/api-migration-checklist.md +164 -164
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/common-compile-errors.md +556 -556
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/deveco-cli-tools.md +459 -459
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/edge-cases.md +65 -65
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/har-tgz-build.md +512 -512
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/version-compat-matrix.md +132 -132
- package/vendor/Server/Skills/rnoh-lib-code-adapt/scripts/auto-integrate.sh +424 -424
- package/vendor/Server/Skills/rnoh-lib-demo-coverage/SKILL.md +137 -137
- package/vendor/Server/Skills/rnoh-lib-demo-create/SKILL.md +306 -306
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/DEMO_PAGE_TEMPLATE.md +485 -485
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/INDEX_TEMPLATE.md +172 -172
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/DEMO_CODE_RULES.md +422 -422
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/QUALITY_CHECKLIST.md +95 -95
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/SOURCE_EXPLORATION.md +169 -169
- package/vendor/Server/Skills/rnoh-lib-demo-doc/SKILL.md +554 -554
- package/vendor/Server/Skills/rnoh-lib-demo-doc/assets/DEMO_DOC_TEMPLATE.md +106 -106
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/COVERAGE_INCREMENTAL.md +216 -216
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/DEMO_DESIGN_RULES.md +413 -413
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/OUTPUT_FORMAT.md +269 -269
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/QUALITY_CHECKLIST.md +98 -98
- package/vendor/Server/Skills/rnoh-lib-func-test/SKILL.md +337 -337
- package/vendor/Server/Skills/rnoh-lib-rnt-search/SKILL.md +722 -722
- package/vendor/Server/Skills/rnoh-lib-rnt-search/assets/PORT_REPORT_TEMPLATE.md +219 -219
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/DEMO_PORTING_GUIDE.md +345 -345
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/PORT_VERIFICATION.md +269 -269
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/RNT_PROJECT_STRUCTURE.md +173 -173
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/analyze-demo-deps.cjs +267 -267
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/detect-rnoh-version.cjs +174 -174
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/find-rnt-demo.sh +111 -111
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/port-demo.sh +186 -186
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/read-lib-meta.cjs +150 -150
- package/vendor/Server/Skills/rnoh-lib-test-align/SKILL.md +296 -296
- package/vendor/Server/Skills/rnoh-lib-test-align/references/jest-troubleshooting.md +371 -371
- package/vendor/Server/Skills/rnoh-lib-test-align/references/port-test-demo-guide.md +212 -212
- package/vendor/Server/Skills/rnoh-lib-test-align/references/runtime-troubleshooting.md +345 -345
- package/vendor/Server/Skills/rnoh-lib-test-align/references/unit-test-template.md +223 -223
- package/vendor/Server/Skills/rnoh-lib-test-align/scripts/port-test-demo.sh +1053 -1053
- package/vendor/Server/Skills/rnoh-lib-version-diff/SKILL.md +295 -255
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_ADAPTATION.md +82 -77
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_API_LOOKUP.md +224 -224
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/script-reference.md +175 -174
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/detect-upstream-version.js +967 -967
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/generate-diff.js +1798 -1798
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/package.json +5 -5
- package/vendor/Server/Skills/rnoh-lib-version-diff/templates/report-template.md +180 -137
- package/vendor/Server/Skills/rnoh-lib-xts-coverage/SKILL.md +145 -145
- package/vendor/Server/Skills/skill-generator/SKILL.md +365 -365
- package/vendor/Server/Skills/skill-generator/assets/SKILL_TEMPLATE.md +183 -183
- package/vendor/Server/Skills/skill-generator/references/COMPLIANCE_CHECKLIST.md +82 -82
- package/vendor/Server/Skills/skill-generator/references/KB_QUERY_GUIDE.md +110 -110
- package/vendor/Server/Skills/skill-generator/references/MCP_TOOL_DISCOVERY.md +122 -122
- package/vendor/Server/Skills/skill-generator/references/SKILL_SPEC.md +121 -121
- package/vendor/Server/Skills/skill-generator/scripts/validate-skill.cjs +259 -259
- package/vendor/Server/Skills/task-analysis/SKILL.md +234 -234
- package/vendor/Server/Skills/task-analysis/assets/OUTPUT_EXAMPLES.md +160 -160
- package/vendor/Server/Skills/task-analysis/references/ACCEPTANCE_CRITERIA_GUIDE.md +190 -190
- package/vendor/Server/Skills/task-analysis/references/ANALYSIS_SCHEMA.md +224 -224
- package/vendor/Server/Skills/task-analysis/references/INTEGRATION_CONTEXT.md +162 -162
- package/vendor/Server/Skills/task-analysis/references/LESSONS_LEARNED.md +55 -55
- package/vendor/Server/Skills/task-analysis/references/REPLAN_CONTEXT_GUIDE.md +126 -126
- package/vendor/Server/Skills/task-analysis/scripts/validate-analysis-output.sh +256 -256
- package/vendor/Server/Skills/task-decomposition/SKILL.md +528 -528
- package/vendor/Server/Skills/task-decomposition/assets/OUTPUT_EXAMPLES.md +451 -451
- package/vendor/Server/Skills/task-decomposition/references/ACCEPTANCE_CRITERIA_GUIDE.md +179 -179
- package/vendor/Server/Skills/task-decomposition/references/DEPENDENCY_GRAPH_GUIDE.md +152 -152
- package/vendor/Server/Skills/task-decomposition/references/INTEGRATION_CONTEXT.md +175 -175
- package/vendor/Server/Skills/task-decomposition/references/REPLAN_CONTEXT_GUIDE.md +195 -195
- package/vendor/Server/Skills/task-decomposition/references/TASK_DECOMPOSITION_TEMPLATES.md +226 -226
- package/vendor/Server/Skills/task-decomposition/scripts/list-available-skills.cjs +263 -263
- package/vendor/Server/Skills/task-decomposition/scripts/skill-blacklist.json +29 -29
- package/vendor/Server/Skills/task-decomposition/scripts/validate-decomposition-output.cjs +376 -376
- package/vendor/Server/Skills/task-decomposition/scripts/validate-param-consistency.cjs +259 -259
- package/vendor/Server/Skills/task-decomposition/scripts/validate-specified-skills.cjs +216 -216
- package/vendor/Server/Skills/task-decomposition/scripts/validate-step-graph.cjs +424 -424
- package/vendor/Server/Skills/tpc-cpp-check/SKILL.md +427 -427
- package/vendor/Server/Skills/tpc-cpp-check/references/CHECKLIST.md +214 -214
- package/vendor/Server/Skills/tpc-cpp-check/references/HPKBUILD_GUIDE.md +235 -235
- package/vendor/Server/Skills/tpc-cpp-check/references/REPORT_TEMPLATE.md +250 -250
- package/vendor/Server/TestCheck/TestCheck.js +775 -775
- package/vendor/Server/TestCheck/index.js +11 -11
- package/vendor/Server/library/McpToolGuide.js +280 -280
- package/vendor/Server/library/StatsService.js +126 -126
- package/vendor/Server/library/cstTime.js +16 -16
- package/vendor/VERSION +3 -3
- package/workflows/pr-check.mjs +105 -105
- package/workflows/pr-push.mjs +192 -192
- package/vendor/Server/Agent/SkillSelector/types.js +0 -63
|
@@ -1,421 +1,421 @@
|
|
|
1
|
-
# CPTF 测试生成指南
|
|
2
|
-
|
|
3
|
-
> Phase 4-5 的详细操作手册。核心是 CPTF 测试工程搭建和测试用例生成,保证与 Demo 的精确对齐。
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## 1. CPTF 测试工程搭建
|
|
8
|
-
|
|
9
|
-
### 1.1 前置检查
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
# CPTF 框架源码位置
|
|
13
|
-
ls -la ~/Library/pnpm/global/5/node_modules/@cptf/framework
|
|
14
|
-
|
|
15
|
-
# hdc 工具与设备
|
|
16
|
-
hdc list targets
|
|
17
|
-
|
|
18
|
-
# demo hap 构建产物
|
|
19
|
-
ls {projectRoot}/harmony/entry/build/default/outputs/default/entry-default-signed.hap
|
|
20
|
-
|
|
21
|
-
# demo bundleId
|
|
22
|
-
cat {projectRoot}/AppScope/app.json5 | grep bundleName
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
### 1.2 cptf.config.json 完整配置
|
|
26
|
-
|
|
27
|
-
```json
|
|
28
|
-
{
|
|
29
|
-
"bundleId": "com.example.xxx",
|
|
30
|
-
"reportDir": "test-reports",
|
|
31
|
-
"reportFormat": "html",
|
|
32
|
-
"casesDir": "tests/cases",
|
|
33
|
-
"enableAlerts": true,
|
|
34
|
-
"timezone": "BeiJing",
|
|
35
|
-
"platforms": {
|
|
36
|
-
"harmony": {
|
|
37
|
-
"toolPath": "hdc",
|
|
38
|
-
"bundleId": "com.example.xxx",
|
|
39
|
-
"appPath": "<demoPath 绝对路径>/harmony/entry/build/default/outputs/default/entry-default-signed.hap",
|
|
40
|
-
"devices": [
|
|
41
|
-
{
|
|
42
|
-
"id": "<设备SN>",
|
|
43
|
-
"screenWidth": 1280,
|
|
44
|
-
"screenHeight": 2832
|
|
45
|
-
}
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
字段说明:
|
|
53
|
-
- `appPath` 必须是**绝对路径**(signed hap)
|
|
54
|
-
- `timezone` 设置报告时间戳时区,框架内置支持 `"BeiJing"`(UTC+8) / `"Asia/Shanghai"` / `"Tokyo"` / `"NewYork"` / `"London"` 等。未设置时默认 UTC,报告目录和日志时间会差 8 小时
|
|
55
|
-
- `screenWidth/screenHeight` 影响滚动与坐标计算
|
|
56
|
-
- `casesDir` 相对 workspace 根;测试文件放 `tests/cases/functional/` 下自动被发现
|
|
57
|
-
|
|
58
|
-
### 1.3 link 依赖建立
|
|
59
|
-
|
|
60
|
-
> ⚠️ cptf CLI shim 的 NODE_PATH 不可靠,必须在测试工程本地建立 node_modules。
|
|
61
|
-
|
|
62
|
-
`{workspaceDir}/package.json`:
|
|
63
|
-
|
|
64
|
-
```json
|
|
65
|
-
{
|
|
66
|
-
"name": "cptf-workspace",
|
|
67
|
-
"version": "1.0.0",
|
|
68
|
-
"private": true,
|
|
69
|
-
"description": "CPTF 测试工程: <libName> RNOH 功能测试",
|
|
70
|
-
"dependencies": {
|
|
71
|
-
"@cptf/framework": "link:<frameworkPath 绝对路径>",
|
|
72
|
-
"reflect-metadata": "link:<frameworkPath>/node_modules/reflect-metadata"
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
`reflect-metadata` 是 `@Step`/`@Test` 装饰器的运行时依赖,必须与框架内版本一致。
|
|
78
|
-
|
|
79
|
-
```bash
|
|
80
|
-
cd {workspaceDir}
|
|
81
|
-
pnpm install
|
|
82
|
-
node -e "console.log(require.resolve('@cptf/framework'))"
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
### 1.4 TS 支持
|
|
86
|
-
|
|
87
|
-
框架 CLI 内置 `registerTsNode()`(ts-node transpileOnly),测试文件直接写 `.ts`。
|
|
88
|
-
|
|
89
|
-
> ⚠️ **必须生成 `{workspaceDir}/tsconfig.json`**。ts-node 注册时会向上遍历目录查找 tsconfig.json。若 cptf workspace 在 RN 工程子目录下(如 `example/cptf/`),ts-node 会拾取上级 `example/tsconfig.json`(通常 extends `@react-native/typescript-config`),导致 `File '@react-native/typescript-config/tsconfig.json' not found` 或装饰器行为异常。
|
|
90
|
-
|
|
91
|
-
生成 `{workspaceDir}/tsconfig.json`:
|
|
92
|
-
|
|
93
|
-
```json
|
|
94
|
-
{
|
|
95
|
-
"compilerOptions": {
|
|
96
|
-
"target": "ES2020",
|
|
97
|
-
"module": "CommonJS",
|
|
98
|
-
"moduleResolution": "Node",
|
|
99
|
-
"esModuleInterop": true,
|
|
100
|
-
"skipLibCheck": true,
|
|
101
|
-
"strict": false,
|
|
102
|
-
"resolveJsonModule": true,
|
|
103
|
-
"declaration": false,
|
|
104
|
-
"outDir": "./dist"
|
|
105
|
-
},
|
|
106
|
-
"include": ["tests/**/*.ts"]
|
|
107
|
-
}
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
> ⚠️ **禁止设置 `experimentalDecorators` 和 `emitDecoratorMetadata`**。CPTF 框架的 `@Test`/`@Step` 装饰器使用 **Stage 3 装饰器规范**(方法装饰器接收 `context` 参数,调用 `context.addInitializer()`)。若 tsconfig 开启 `experimentalDecorators: true`,TypeScript 编译器会使用旧版(Stage 1/2)装饰器格式,不提供 `context` 对象,运行时报 `context.addInitializer is not a function`。
|
|
111
|
-
|
|
112
|
-
### 1.5 用例发现机制
|
|
113
|
-
|
|
114
|
-
- CLI 扫描 `{casesDir}` 下所有 `.ts` 文件
|
|
115
|
-
- 文件必须 `export const testCaseExecutor = new XxxTest()`
|
|
116
|
-
- `@Test({ id: '...' })` 的 id 用于 `-t` 过滤
|
|
117
|
-
|
|
118
|
-
### 1.6 常见搭建故障
|
|
119
|
-
|
|
120
|
-
| 现象 | 原因 | 修复 |
|
|
121
|
-
|------|------|------|
|
|
122
|
-
| `Cannot find module '@cptf/framework'` | shim NODE_PATH 失效 | 本地 link 依赖 |
|
|
123
|
-
| `Cannot find module 'reflect-metadata'` | 漏配 reflect-metadata link | 补 package.json link |
|
|
124
|
-
| `File '@react-native/typescript-config/tsconfig.json' not found` | ts-node 拾取上级 RN 工程 tsconfig | 生成 workspace 本地 tsconfig.json |
|
|
125
|
-
| `context.addInitializer is not a function` | tsconfig 设了 `experimentalDecorators` | 移除 `experimentalDecorators` 和 `emitDecoratorMetadata` |
|
|
126
|
-
| `Invalid or unexpected token` | ts-node 编译失败(拾取错误 tsconfig) | 同上,生成独立 tsconfig.json |
|
|
127
|
-
| 装饰器不生效 | 未 import 'reflect-metadata' | 文件首行加 import |
|
|
128
|
-
| 报告只显示 1 个用例 | 所有 @Step 在同一个 @Test 类 | 按 API 分类拆分多文件,每个文件一个 @Test |
|
|
129
|
-
| 设备连接失败 | hdc 未授权/未插 | `hdc list targets` 检查 |
|
|
130
|
-
| hap 安装失败 | appPath 非绝对路径/未签名 | 核对 entry-default-signed.hap |
|
|
131
|
-
|
|
132
|
-
---
|
|
133
|
-
|
|
134
|
-
## 2. 测试用例生成规则
|
|
135
|
-
|
|
136
|
-
### 2.1 文件骨架
|
|
137
|
-
|
|
138
|
-
```typescript
|
|
139
|
-
import 'reflect-metadata';
|
|
140
|
-
import { Test, Step, FunctionalTest, NavigationStrategyFactory } from '@cptf/framework';
|
|
141
|
-
import type { UIElement } from '@cptf/framework';
|
|
142
|
-
|
|
143
|
-
NavigationStrategyFactory.registerStrategy('single-page', () => ({
|
|
144
|
-
id: 'single-page',
|
|
145
|
-
async navigateToTestScene(ctx): Promise<void> {
|
|
146
|
-
ctx.logger.debug('[single-page] 等待 testerino 面板就绪');
|
|
147
|
-
const deadline = Date.now() + 15000;
|
|
148
|
-
while (Date.now() < deadline) {
|
|
149
|
-
const panel = await ctx.ui.findByText('TOTAL');
|
|
150
|
-
if (panel) {
|
|
151
|
-
ctx.logger.debug('[single-page] testerino 面板已就绪');
|
|
152
|
-
return;
|
|
153
|
-
}
|
|
154
|
-
await ctx.ui.sleep(500);
|
|
155
|
-
}
|
|
156
|
-
ctx.logger.warn('[single-page] 未检测到 testerino 面板,继续执行');
|
|
157
|
-
},
|
|
158
|
-
async returnFromTestScene(_ctx): Promise<void> {},
|
|
159
|
-
}));
|
|
160
|
-
|
|
161
|
-
@Test({
|
|
162
|
-
id: '{lib-short-name}-func',
|
|
163
|
-
name: '{libName} 功能测试',
|
|
164
|
-
module: 'functional',
|
|
165
|
-
platform: 'harmony',
|
|
166
|
-
category: '{分类}',
|
|
167
|
-
description: '覆盖 {libName} 的 {能力概述}',
|
|
168
|
-
navigationStrategy: 'single-page',
|
|
169
|
-
captureScreenshots: true,
|
|
170
|
-
waitAfterAction: 300,
|
|
171
|
-
})
|
|
172
|
-
class {LibName}Test extends FunctionalTest {
|
|
173
|
-
// 辅助方法 + @Step 方法
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
export const testCaseExecutor = new {LibName}Test();
|
|
177
|
-
```
|
|
178
|
-
|
|
179
|
-
### 2.2 辅助方法
|
|
180
|
-
|
|
181
|
-
#### scrollAndClick
|
|
182
|
-
|
|
183
|
-
```typescript
|
|
184
|
-
private async scrollAndClick(textKey: string, stepLabel: string): Promise<void> {
|
|
185
|
-
const btn = await this.ui!.scrollToFindElement(
|
|
186
|
-
{ textContains: textKey, type: 'Button' },
|
|
187
|
-
{ maxScrolls: 12, waitAfterScroll: 300 },
|
|
188
|
-
);
|
|
189
|
-
if (!btn) {
|
|
190
|
-
throw new Error(`未找到按钮: ${stepLabel} (关键字: ${textKey})`);
|
|
191
|
-
}
|
|
192
|
-
const ok = await this.ui!.clickElement(btn);
|
|
193
|
-
if (!ok) {
|
|
194
|
-
throw new Error(`点击按钮失败: ${stepLabel}`);
|
|
195
|
-
}
|
|
196
|
-
await this.sleep(600);
|
|
197
|
-
}
|
|
198
|
-
```
|
|
199
|
-
|
|
200
|
-
#### scrollAndClickByTestId(优先使用,Demo 已设置 testID)
|
|
201
|
-
|
|
202
|
-
```typescript
|
|
203
|
-
private async scrollAndClickByTestId(testId: string, stepLabel: string): Promise<void> {
|
|
204
|
-
const btn = await this.ui!.scrollToFindElement(
|
|
205
|
-
{ testID: testId },
|
|
206
|
-
{ maxScrolls: 12, waitAfterScroll: 300 },
|
|
207
|
-
);
|
|
208
|
-
if (!btn) {
|
|
209
|
-
throw new Error(`未找到按钮: ${stepLabel} (testID: ${testId})`);
|
|
210
|
-
}
|
|
211
|
-
const ok = await this.ui!.clickElement(btn);
|
|
212
|
-
if (!ok) {
|
|
213
|
-
throw new Error(`点击按钮失败: ${stepLabel}`);
|
|
214
|
-
}
|
|
215
|
-
await this.sleep(600);
|
|
216
|
-
}
|
|
217
|
-
```
|
|
218
|
-
|
|
219
|
-
#### waitForText
|
|
220
|
-
|
|
221
|
-
```typescript
|
|
222
|
-
private async waitForText(expectedSub: string, timeout = 8000): Promise<UIElement | null> {
|
|
223
|
-
const deadline = Date.now() + timeout;
|
|
224
|
-
while (Date.now() < deadline) {
|
|
225
|
-
const el = await this.ui!.findByText(expectedSub);
|
|
226
|
-
if (el) return el;
|
|
227
|
-
await this.sleep(400);
|
|
228
|
-
}
|
|
229
|
-
return null;
|
|
230
|
-
}
|
|
231
|
-
```
|
|
232
|
-
|
|
233
|
-
#### report
|
|
234
|
-
|
|
235
|
-
```typescript
|
|
236
|
-
private report(passed: boolean, details: string): void {
|
|
237
|
-
this.currentStepResult = {
|
|
238
|
-
stepName: this.currentStepResult?.stepName || '校验',
|
|
239
|
-
passed,
|
|
240
|
-
details,
|
|
241
|
-
};
|
|
242
|
-
if (!passed) {
|
|
243
|
-
throw new Error(details);
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
```
|
|
247
|
-
|
|
248
|
-
### 2.3 编码规则速查
|
|
249
|
-
|
|
250
|
-
| 规则 | 原因 |
|
|
251
|
-
|------|------|
|
|
252
|
-
| 文件首行 `import 'reflect-metadata'` | 装饰器运行时依赖 |
|
|
253
|
-
| 每个 @Step 显式 `stepTimeout: 30000` | 默认 10s 不够滚动+点击+等待 |
|
|
254
|
-
| 断言文本从 Demo 代码逐字符复制 | 全角/半角冒号差异是头号失败根因 |
|
|
255
|
-
| 优先用 testID 定位(Demo 已设置) | testID 比 textContains 更稳定 |
|
|
256
|
-
| `captureScreenshot: false`(常规步骤) | 减少耗时;失败步骤框架自动截图 |
|
|
257
|
-
| 文件末尾 `export const testCaseExecutor` | CLI 用例发现约定 |
|
|
258
|
-
| 步骤名含中文+API 名 | 报告可读性 |
|
|
259
|
-
| scrollAndClick 后 `sleep(600)` | 等待点击生效+渲染 |
|
|
260
|
-
| waitForText 轮询 400ms x 20 次(8s) | 渲染时延容错 |
|
|
261
|
-
|
|
262
|
-
### 2.4 多文件拆分规则
|
|
263
|
-
|
|
264
|
-
> ⚠️ **一个 `@Test` 类 = 报告中一个用例**。若所有 `@Step` 放在同一个 `@Test` 类中,报告中只显示 1 个用例(含 N 个步骤),无法体现分类维度。
|
|
265
|
-
|
|
266
|
-
按 API 分类拆分测试文件,每个分类一个独立 `.test.ts` 文件:
|
|
267
|
-
|
|
268
|
-
```
|
|
269
|
-
tests/cases/functional/
|
|
270
|
-
├── 001_{apiCategory1}.test.ts # @Test id='{lib}-cat1'
|
|
271
|
-
├── 002_{apiCategory2}.test.ts # @Test id='{lib}-cat2'
|
|
272
|
-
└── ...
|
|
273
|
-
```
|
|
274
|
-
|
|
275
|
-
每个文件完整包含:
|
|
276
|
-
1. `import 'reflect-metadata'` + `@cptf/framework` 导入
|
|
277
|
-
2. `NavigationStrategyFactory.registerStrategy('single-page', ...)` 注册
|
|
278
|
-
3. `abstract class BaseTest extends FunctionalTest` 辅助基类(scrollAndClickByTestId / waitForText / report)
|
|
279
|
-
4. `@Test` 装饰器 + 继承 BaseTest 的测试类 + `@Step` 方法
|
|
280
|
-
5. `export const testCaseExecutor = new XxxTest()`
|
|
281
|
-
|
|
282
|
-
> 多文件中 NavigationStrategy 和 BaseTest 代码重复是预期行为。ts-node transpileOnly 模式下无模块解析开销。
|
|
283
|
-
|
|
284
|
-
### 2.5 回调类 API 容错断言
|
|
285
|
-
|
|
286
|
-
部分 API 通过 `(Module as any)` 调用(在 JS 层未导出或 TurboModule Spec 未声明),回调可能永不触发,导致 `waitForText` 超时。对此类 API 使用容错断言:
|
|
287
|
-
|
|
288
|
-
```typescript
|
|
289
|
-
@Step('调用 {apiName}({params})', { captureScreenshot: false, stepTimeout: 30000 })
|
|
290
|
-
async test{ApiName}(): Promise<void> {
|
|
291
|
-
await this.scrollAndClickByTestId('{apiName}-btn', '调用 {apiName}');
|
|
292
|
-
await this.sleep(2000);
|
|
293
|
-
let el = await this.waitForText('{apiName}结果', 8000);
|
|
294
|
-
if (!el) { el = await this.waitForText('错误信息', 3000); }
|
|
295
|
-
if (!el) { throw new Error('点击后未出现{apiName}结果或错误信息文本'); }
|
|
296
|
-
const text = this.getChildText(el) || el.text || '';
|
|
297
|
-
this.report(text.includes('{apiName}结果') || text.includes('错误信息'), `结果: "${text.trim()}"`);
|
|
298
|
-
}
|
|
299
|
-
```
|
|
300
|
-
|
|
301
|
-
适用条件:
|
|
302
|
-
- API 在 `index.js` 中通过 `(Module as any)` 调用
|
|
303
|
-
- `index.d.ts` 声明但 `NativeXxx.ts` TurboModule Spec 未定义该方法
|
|
304
|
-
- 回调类 API(callback 参数)且回调可能不被触发
|
|
305
|
-
|
|
306
|
-
---
|
|
307
|
-
|
|
308
|
-
### 3.1 对齐矩阵
|
|
309
|
-
|
|
310
|
-
由于 Demo 和 Test 从同一接口规格派生(Phase 2 映射表),对齐保证如下:
|
|
311
|
-
|
|
312
|
-
| 对齐维度 | Demo 侧 | Test 侧 | 保证方式 |
|
|
313
|
-
|----------|---------|---------|----------|
|
|
314
|
-
| API 覆盖 | 每个 API 有 Demo 按钮 | 每个 API 有 @Step | 映射表双向覆盖 |
|
|
315
|
-
| testID | `{apiName}-btn` | `scrollAndClickByTestId('{apiName}-btn')` | 命名规则统一 |
|
|
316
|
-
| 断言文本 | `Text` 前缀 `{API名}结果:` | `waitForText('{API名}结果')` | 逐字符复制 |
|
|
317
|
-
| 按钮定位 | title 含 API 名 | `textContains` 用 API 名子串 | 命名规则统一 |
|
|
318
|
-
| 结果值 | 固定前缀 + 动态值 | `waitForText` 前缀 + 值校验 | 前缀固定可可靠断言 |
|
|
319
|
-
|
|
320
|
-
### 3.2 各 API 类型的 @Step 写法
|
|
321
|
-
|
|
322
|
-
#### 3.2.1 TurboModule 同步方法
|
|
323
|
-
|
|
324
|
-
```typescript
|
|
325
|
-
@Step('调用 {apiName}({params})', { captureScreenshot: false, stepTimeout: 30000 })
|
|
326
|
-
async test{ApiName}(): Promise<void> {
|
|
327
|
-
await this.scrollAndClickByTestId('{apiName}-btn', '调用 {apiName}');
|
|
328
|
-
const el = await this.waitForText('{apiName}结果');
|
|
329
|
-
if (!el) {
|
|
330
|
-
throw new Error('点击后未出现{apiName}结果文本');
|
|
331
|
-
}
|
|
332
|
-
const text = this.getChildText(el) || el.text || '';
|
|
333
|
-
this.report(text.includes('{expectedValue}'), `结果: "${text.trim()}"`);
|
|
334
|
-
}
|
|
335
|
-
```
|
|
336
|
-
|
|
337
|
-
#### 3.2.2 TurboModule 异步方法
|
|
338
|
-
|
|
339
|
-
```typescript
|
|
340
|
-
@Step('调用 {apiName}({params})', { captureScreenshot: false, stepTimeout: 30000 })
|
|
341
|
-
async test{ApiName}(): Promise<void> {
|
|
342
|
-
await this.scrollAndClickByTestId('{apiName}-btn', '调用 {apiName}');
|
|
343
|
-
// 异步方法需要更长等待
|
|
344
|
-
const el = await this.waitForText('{apiName}结果', 10000);
|
|
345
|
-
if (!el) {
|
|
346
|
-
throw new Error('点击后未出现{apiName}结果文本');
|
|
347
|
-
}
|
|
348
|
-
const text = this.getChildText(el) || el.text || '';
|
|
349
|
-
this.report(!text.includes('加载中'), `结果: "${text.trim()}"`);
|
|
350
|
-
}
|
|
351
|
-
```
|
|
352
|
-
|
|
353
|
-
#### 3.2.3 事件回调
|
|
354
|
-
|
|
355
|
-
```typescript
|
|
356
|
-
@Step('监听 {eventName} 事件', { captureScreenshot: false, stepTimeout: 30000 })
|
|
357
|
-
async test{EventName}(): Promise<void> {
|
|
358
|
-
await this.scrollAndClickByTestId('startListen-btn', '开始监听 {eventName}');
|
|
359
|
-
// 触发事件(可能需要额外操作)
|
|
360
|
-
const el = await this.waitForText('{eventName}结果', 10000);
|
|
361
|
-
if (!el) {
|
|
362
|
-
throw new Error('未捕获到{eventName}事件');
|
|
363
|
-
}
|
|
364
|
-
const text = this.getChildText(el) || el.text || '';
|
|
365
|
-
this.report(text.includes('{eventName}结果'), `事件结果: "${text.trim()}"`);
|
|
366
|
-
// 清理
|
|
367
|
-
await this.scrollAndClickByTestId('stopListen-btn', '停止监听');
|
|
368
|
-
}
|
|
369
|
-
```
|
|
370
|
-
|
|
371
|
-
#### 3.2.4 组件属性
|
|
372
|
-
|
|
373
|
-
```typescript
|
|
374
|
-
@Step('切换 {componentName} 的 {propName} 属性', { captureScreenshot: false, stepTimeout: 30000 })
|
|
375
|
-
async test{ComponentName}{PropName}(): Promise<void> {
|
|
376
|
-
await this.scrollAndClickByTestId('toggle{PropName}-btn', '切换 {propName}');
|
|
377
|
-
const el = await this.waitForText('{propName}属性');
|
|
378
|
-
if (!el) {
|
|
379
|
-
throw new Error('未出现{propName}属性文本');
|
|
380
|
-
}
|
|
381
|
-
const text = this.getChildText(el) || el.text || '';
|
|
382
|
-
this.report(text.includes('{expectedValue}'), `属性值: "${text.trim()}"`);
|
|
383
|
-
}
|
|
384
|
-
```
|
|
385
|
-
|
|
386
|
-
#### 3.2.5 常量/枚举
|
|
387
|
-
|
|
388
|
-
```typescript
|
|
389
|
-
@Step('验证常量 {constantName}', { captureScreenshot: false, stepTimeout: 30000 })
|
|
390
|
-
async test{ConstantName}(): Promise<void> {
|
|
391
|
-
// 常量在页面加载时即显示,无需点击
|
|
392
|
-
const el = await this.waitForText('{constantName}常量');
|
|
393
|
-
if (!el) {
|
|
394
|
-
throw new Error('未出现{constantName}常量文本');
|
|
395
|
-
}
|
|
396
|
-
const text = this.getChildText(el) || el.text || '';
|
|
397
|
-
this.report(text.includes('{expectedValue}'), `常量值: "${text.trim()}"`);
|
|
398
|
-
}
|
|
399
|
-
```
|
|
400
|
-
|
|
401
|
-
---
|
|
402
|
-
|
|
403
|
-
## 4. 失败诊断与修复
|
|
404
|
-
|
|
405
|
-
### 4.1 级联取消机制
|
|
406
|
-
|
|
407
|
-
CPTF 框架的 `FunctionalTest.execute()` 在步骤超时时设置 `_cancelled = true`,此后所有 UIAutomation 调用经 `throwIfCancelled()` 抛 `'UIAutomation: 用例已取消'`。
|
|
408
|
-
|
|
409
|
-
结论:一个步骤超时 -> 后续全部步骤级联失败。看到批量"用例已取消",只需诊断第一个超时步骤。
|
|
410
|
-
|
|
411
|
-
### 4.2 常见失败速查
|
|
412
|
-
|
|
413
|
-
| 现象 | 根因 | 修复方向 |
|
|
414
|
-
|------|------|----------|
|
|
415
|
-
| `Cannot find module '@cptf/framework'` | shim NODE_PATH 失效 | 本地 link 依赖 |
|
|
416
|
-
| 步骤超时后批量"用例已取消" | 级联取消 | 修第一个超时步骤 |
|
|
417
|
-
| 单步超时但按钮已点击成功 | waitForText 匹配串错误 | 逐字符对照 Demo 代码修断言文本 |
|
|
418
|
-
| 未找到按钮 | testID 不匹配或未滚动到位 | 核对 testID,增大 maxScrolls |
|
|
419
|
-
| 异步方法步骤超时 | 等待时间不够 | 增加 waitForText timeout 到 10000+ |
|
|
420
|
-
|
|
421
|
-
> 实机运行与调试详见 `rnoh-cptf-test-run` SKILL
|
|
1
|
+
# CPTF 测试生成指南
|
|
2
|
+
|
|
3
|
+
> Phase 4-5 的详细操作手册。核心是 CPTF 测试工程搭建和测试用例生成,保证与 Demo 的精确对齐。
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. CPTF 测试工程搭建
|
|
8
|
+
|
|
9
|
+
### 1.1 前置检查
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
# CPTF 框架源码位置
|
|
13
|
+
ls -la ~/Library/pnpm/global/5/node_modules/@cptf/framework
|
|
14
|
+
|
|
15
|
+
# hdc 工具与设备
|
|
16
|
+
hdc list targets
|
|
17
|
+
|
|
18
|
+
# demo hap 构建产物
|
|
19
|
+
ls {projectRoot}/harmony/entry/build/default/outputs/default/entry-default-signed.hap
|
|
20
|
+
|
|
21
|
+
# demo bundleId
|
|
22
|
+
cat {projectRoot}/AppScope/app.json5 | grep bundleName
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### 1.2 cptf.config.json 完整配置
|
|
26
|
+
|
|
27
|
+
```json
|
|
28
|
+
{
|
|
29
|
+
"bundleId": "com.example.xxx",
|
|
30
|
+
"reportDir": "test-reports",
|
|
31
|
+
"reportFormat": "html",
|
|
32
|
+
"casesDir": "tests/cases",
|
|
33
|
+
"enableAlerts": true,
|
|
34
|
+
"timezone": "BeiJing",
|
|
35
|
+
"platforms": {
|
|
36
|
+
"harmony": {
|
|
37
|
+
"toolPath": "hdc",
|
|
38
|
+
"bundleId": "com.example.xxx",
|
|
39
|
+
"appPath": "<demoPath 绝对路径>/harmony/entry/build/default/outputs/default/entry-default-signed.hap",
|
|
40
|
+
"devices": [
|
|
41
|
+
{
|
|
42
|
+
"id": "<设备SN>",
|
|
43
|
+
"screenWidth": 1280,
|
|
44
|
+
"screenHeight": 2832
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
字段说明:
|
|
53
|
+
- `appPath` 必须是**绝对路径**(signed hap)
|
|
54
|
+
- `timezone` 设置报告时间戳时区,框架内置支持 `"BeiJing"`(UTC+8) / `"Asia/Shanghai"` / `"Tokyo"` / `"NewYork"` / `"London"` 等。未设置时默认 UTC,报告目录和日志时间会差 8 小时
|
|
55
|
+
- `screenWidth/screenHeight` 影响滚动与坐标计算
|
|
56
|
+
- `casesDir` 相对 workspace 根;测试文件放 `tests/cases/functional/` 下自动被发现
|
|
57
|
+
|
|
58
|
+
### 1.3 link 依赖建立
|
|
59
|
+
|
|
60
|
+
> ⚠️ cptf CLI shim 的 NODE_PATH 不可靠,必须在测试工程本地建立 node_modules。
|
|
61
|
+
|
|
62
|
+
`{workspaceDir}/package.json`:
|
|
63
|
+
|
|
64
|
+
```json
|
|
65
|
+
{
|
|
66
|
+
"name": "cptf-workspace",
|
|
67
|
+
"version": "1.0.0",
|
|
68
|
+
"private": true,
|
|
69
|
+
"description": "CPTF 测试工程: <libName> RNOH 功能测试",
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@cptf/framework": "link:<frameworkPath 绝对路径>",
|
|
72
|
+
"reflect-metadata": "link:<frameworkPath>/node_modules/reflect-metadata"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
`reflect-metadata` 是 `@Step`/`@Test` 装饰器的运行时依赖,必须与框架内版本一致。
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
cd {workspaceDir}
|
|
81
|
+
pnpm install
|
|
82
|
+
node -e "console.log(require.resolve('@cptf/framework'))"
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### 1.4 TS 支持
|
|
86
|
+
|
|
87
|
+
框架 CLI 内置 `registerTsNode()`(ts-node transpileOnly),测试文件直接写 `.ts`。
|
|
88
|
+
|
|
89
|
+
> ⚠️ **必须生成 `{workspaceDir}/tsconfig.json`**。ts-node 注册时会向上遍历目录查找 tsconfig.json。若 cptf workspace 在 RN 工程子目录下(如 `example/cptf/`),ts-node 会拾取上级 `example/tsconfig.json`(通常 extends `@react-native/typescript-config`),导致 `File '@react-native/typescript-config/tsconfig.json' not found` 或装饰器行为异常。
|
|
90
|
+
|
|
91
|
+
生成 `{workspaceDir}/tsconfig.json`:
|
|
92
|
+
|
|
93
|
+
```json
|
|
94
|
+
{
|
|
95
|
+
"compilerOptions": {
|
|
96
|
+
"target": "ES2020",
|
|
97
|
+
"module": "CommonJS",
|
|
98
|
+
"moduleResolution": "Node",
|
|
99
|
+
"esModuleInterop": true,
|
|
100
|
+
"skipLibCheck": true,
|
|
101
|
+
"strict": false,
|
|
102
|
+
"resolveJsonModule": true,
|
|
103
|
+
"declaration": false,
|
|
104
|
+
"outDir": "./dist"
|
|
105
|
+
},
|
|
106
|
+
"include": ["tests/**/*.ts"]
|
|
107
|
+
}
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
> ⚠️ **禁止设置 `experimentalDecorators` 和 `emitDecoratorMetadata`**。CPTF 框架的 `@Test`/`@Step` 装饰器使用 **Stage 3 装饰器规范**(方法装饰器接收 `context` 参数,调用 `context.addInitializer()`)。若 tsconfig 开启 `experimentalDecorators: true`,TypeScript 编译器会使用旧版(Stage 1/2)装饰器格式,不提供 `context` 对象,运行时报 `context.addInitializer is not a function`。
|
|
111
|
+
|
|
112
|
+
### 1.5 用例发现机制
|
|
113
|
+
|
|
114
|
+
- CLI 扫描 `{casesDir}` 下所有 `.ts` 文件
|
|
115
|
+
- 文件必须 `export const testCaseExecutor = new XxxTest()`
|
|
116
|
+
- `@Test({ id: '...' })` 的 id 用于 `-t` 过滤
|
|
117
|
+
|
|
118
|
+
### 1.6 常见搭建故障
|
|
119
|
+
|
|
120
|
+
| 现象 | 原因 | 修复 |
|
|
121
|
+
|------|------|------|
|
|
122
|
+
| `Cannot find module '@cptf/framework'` | shim NODE_PATH 失效 | 本地 link 依赖 |
|
|
123
|
+
| `Cannot find module 'reflect-metadata'` | 漏配 reflect-metadata link | 补 package.json link |
|
|
124
|
+
| `File '@react-native/typescript-config/tsconfig.json' not found` | ts-node 拾取上级 RN 工程 tsconfig | 生成 workspace 本地 tsconfig.json |
|
|
125
|
+
| `context.addInitializer is not a function` | tsconfig 设了 `experimentalDecorators` | 移除 `experimentalDecorators` 和 `emitDecoratorMetadata` |
|
|
126
|
+
| `Invalid or unexpected token` | ts-node 编译失败(拾取错误 tsconfig) | 同上,生成独立 tsconfig.json |
|
|
127
|
+
| 装饰器不生效 | 未 import 'reflect-metadata' | 文件首行加 import |
|
|
128
|
+
| 报告只显示 1 个用例 | 所有 @Step 在同一个 @Test 类 | 按 API 分类拆分多文件,每个文件一个 @Test |
|
|
129
|
+
| 设备连接失败 | hdc 未授权/未插 | `hdc list targets` 检查 |
|
|
130
|
+
| hap 安装失败 | appPath 非绝对路径/未签名 | 核对 entry-default-signed.hap |
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## 2. 测试用例生成规则
|
|
135
|
+
|
|
136
|
+
### 2.1 文件骨架
|
|
137
|
+
|
|
138
|
+
```typescript
|
|
139
|
+
import 'reflect-metadata';
|
|
140
|
+
import { Test, Step, FunctionalTest, NavigationStrategyFactory } from '@cptf/framework';
|
|
141
|
+
import type { UIElement } from '@cptf/framework';
|
|
142
|
+
|
|
143
|
+
NavigationStrategyFactory.registerStrategy('single-page', () => ({
|
|
144
|
+
id: 'single-page',
|
|
145
|
+
async navigateToTestScene(ctx): Promise<void> {
|
|
146
|
+
ctx.logger.debug('[single-page] 等待 testerino 面板就绪');
|
|
147
|
+
const deadline = Date.now() + 15000;
|
|
148
|
+
while (Date.now() < deadline) {
|
|
149
|
+
const panel = await ctx.ui.findByText('TOTAL');
|
|
150
|
+
if (panel) {
|
|
151
|
+
ctx.logger.debug('[single-page] testerino 面板已就绪');
|
|
152
|
+
return;
|
|
153
|
+
}
|
|
154
|
+
await ctx.ui.sleep(500);
|
|
155
|
+
}
|
|
156
|
+
ctx.logger.warn('[single-page] 未检测到 testerino 面板,继续执行');
|
|
157
|
+
},
|
|
158
|
+
async returnFromTestScene(_ctx): Promise<void> {},
|
|
159
|
+
}));
|
|
160
|
+
|
|
161
|
+
@Test({
|
|
162
|
+
id: '{lib-short-name}-func',
|
|
163
|
+
name: '{libName} 功能测试',
|
|
164
|
+
module: 'functional',
|
|
165
|
+
platform: 'harmony',
|
|
166
|
+
category: '{分类}',
|
|
167
|
+
description: '覆盖 {libName} 的 {能力概述}',
|
|
168
|
+
navigationStrategy: 'single-page',
|
|
169
|
+
captureScreenshots: true,
|
|
170
|
+
waitAfterAction: 300,
|
|
171
|
+
})
|
|
172
|
+
class {LibName}Test extends FunctionalTest {
|
|
173
|
+
// 辅助方法 + @Step 方法
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
export const testCaseExecutor = new {LibName}Test();
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
### 2.2 辅助方法
|
|
180
|
+
|
|
181
|
+
#### scrollAndClick
|
|
182
|
+
|
|
183
|
+
```typescript
|
|
184
|
+
private async scrollAndClick(textKey: string, stepLabel: string): Promise<void> {
|
|
185
|
+
const btn = await this.ui!.scrollToFindElement(
|
|
186
|
+
{ textContains: textKey, type: 'Button' },
|
|
187
|
+
{ maxScrolls: 12, waitAfterScroll: 300 },
|
|
188
|
+
);
|
|
189
|
+
if (!btn) {
|
|
190
|
+
throw new Error(`未找到按钮: ${stepLabel} (关键字: ${textKey})`);
|
|
191
|
+
}
|
|
192
|
+
const ok = await this.ui!.clickElement(btn);
|
|
193
|
+
if (!ok) {
|
|
194
|
+
throw new Error(`点击按钮失败: ${stepLabel}`);
|
|
195
|
+
}
|
|
196
|
+
await this.sleep(600);
|
|
197
|
+
}
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
#### scrollAndClickByTestId(优先使用,Demo 已设置 testID)
|
|
201
|
+
|
|
202
|
+
```typescript
|
|
203
|
+
private async scrollAndClickByTestId(testId: string, stepLabel: string): Promise<void> {
|
|
204
|
+
const btn = await this.ui!.scrollToFindElement(
|
|
205
|
+
{ testID: testId },
|
|
206
|
+
{ maxScrolls: 12, waitAfterScroll: 300 },
|
|
207
|
+
);
|
|
208
|
+
if (!btn) {
|
|
209
|
+
throw new Error(`未找到按钮: ${stepLabel} (testID: ${testId})`);
|
|
210
|
+
}
|
|
211
|
+
const ok = await this.ui!.clickElement(btn);
|
|
212
|
+
if (!ok) {
|
|
213
|
+
throw new Error(`点击按钮失败: ${stepLabel}`);
|
|
214
|
+
}
|
|
215
|
+
await this.sleep(600);
|
|
216
|
+
}
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
#### waitForText
|
|
220
|
+
|
|
221
|
+
```typescript
|
|
222
|
+
private async waitForText(expectedSub: string, timeout = 8000): Promise<UIElement | null> {
|
|
223
|
+
const deadline = Date.now() + timeout;
|
|
224
|
+
while (Date.now() < deadline) {
|
|
225
|
+
const el = await this.ui!.findByText(expectedSub);
|
|
226
|
+
if (el) return el;
|
|
227
|
+
await this.sleep(400);
|
|
228
|
+
}
|
|
229
|
+
return null;
|
|
230
|
+
}
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
#### report
|
|
234
|
+
|
|
235
|
+
```typescript
|
|
236
|
+
private report(passed: boolean, details: string): void {
|
|
237
|
+
this.currentStepResult = {
|
|
238
|
+
stepName: this.currentStepResult?.stepName || '校验',
|
|
239
|
+
passed,
|
|
240
|
+
details,
|
|
241
|
+
};
|
|
242
|
+
if (!passed) {
|
|
243
|
+
throw new Error(details);
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
### 2.3 编码规则速查
|
|
249
|
+
|
|
250
|
+
| 规则 | 原因 |
|
|
251
|
+
|------|------|
|
|
252
|
+
| 文件首行 `import 'reflect-metadata'` | 装饰器运行时依赖 |
|
|
253
|
+
| 每个 @Step 显式 `stepTimeout: 30000` | 默认 10s 不够滚动+点击+等待 |
|
|
254
|
+
| 断言文本从 Demo 代码逐字符复制 | 全角/半角冒号差异是头号失败根因 |
|
|
255
|
+
| 优先用 testID 定位(Demo 已设置) | testID 比 textContains 更稳定 |
|
|
256
|
+
| `captureScreenshot: false`(常规步骤) | 减少耗时;失败步骤框架自动截图 |
|
|
257
|
+
| 文件末尾 `export const testCaseExecutor` | CLI 用例发现约定 |
|
|
258
|
+
| 步骤名含中文+API 名 | 报告可读性 |
|
|
259
|
+
| scrollAndClick 后 `sleep(600)` | 等待点击生效+渲染 |
|
|
260
|
+
| waitForText 轮询 400ms x 20 次(8s) | 渲染时延容错 |
|
|
261
|
+
|
|
262
|
+
### 2.4 多文件拆分规则
|
|
263
|
+
|
|
264
|
+
> ⚠️ **一个 `@Test` 类 = 报告中一个用例**。若所有 `@Step` 放在同一个 `@Test` 类中,报告中只显示 1 个用例(含 N 个步骤),无法体现分类维度。
|
|
265
|
+
|
|
266
|
+
按 API 分类拆分测试文件,每个分类一个独立 `.test.ts` 文件:
|
|
267
|
+
|
|
268
|
+
```
|
|
269
|
+
tests/cases/functional/
|
|
270
|
+
├── 001_{apiCategory1}.test.ts # @Test id='{lib}-cat1'
|
|
271
|
+
├── 002_{apiCategory2}.test.ts # @Test id='{lib}-cat2'
|
|
272
|
+
└── ...
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
每个文件完整包含:
|
|
276
|
+
1. `import 'reflect-metadata'` + `@cptf/framework` 导入
|
|
277
|
+
2. `NavigationStrategyFactory.registerStrategy('single-page', ...)` 注册
|
|
278
|
+
3. `abstract class BaseTest extends FunctionalTest` 辅助基类(scrollAndClickByTestId / waitForText / report)
|
|
279
|
+
4. `@Test` 装饰器 + 继承 BaseTest 的测试类 + `@Step` 方法
|
|
280
|
+
5. `export const testCaseExecutor = new XxxTest()`
|
|
281
|
+
|
|
282
|
+
> 多文件中 NavigationStrategy 和 BaseTest 代码重复是预期行为。ts-node transpileOnly 模式下无模块解析开销。
|
|
283
|
+
|
|
284
|
+
### 2.5 回调类 API 容错断言
|
|
285
|
+
|
|
286
|
+
部分 API 通过 `(Module as any)` 调用(在 JS 层未导出或 TurboModule Spec 未声明),回调可能永不触发,导致 `waitForText` 超时。对此类 API 使用容错断言:
|
|
287
|
+
|
|
288
|
+
```typescript
|
|
289
|
+
@Step('调用 {apiName}({params})', { captureScreenshot: false, stepTimeout: 30000 })
|
|
290
|
+
async test{ApiName}(): Promise<void> {
|
|
291
|
+
await this.scrollAndClickByTestId('{apiName}-btn', '调用 {apiName}');
|
|
292
|
+
await this.sleep(2000);
|
|
293
|
+
let el = await this.waitForText('{apiName}结果', 8000);
|
|
294
|
+
if (!el) { el = await this.waitForText('错误信息', 3000); }
|
|
295
|
+
if (!el) { throw new Error('点击后未出现{apiName}结果或错误信息文本'); }
|
|
296
|
+
const text = this.getChildText(el) || el.text || '';
|
|
297
|
+
this.report(text.includes('{apiName}结果') || text.includes('错误信息'), `结果: "${text.trim()}"`);
|
|
298
|
+
}
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
适用条件:
|
|
302
|
+
- API 在 `index.js` 中通过 `(Module as any)` 调用
|
|
303
|
+
- `index.d.ts` 声明但 `NativeXxx.ts` TurboModule Spec 未定义该方法
|
|
304
|
+
- 回调类 API(callback 参数)且回调可能不被触发
|
|
305
|
+
|
|
306
|
+
---
|
|
307
|
+
|
|
308
|
+
### 3.1 对齐矩阵
|
|
309
|
+
|
|
310
|
+
由于 Demo 和 Test 从同一接口规格派生(Phase 2 映射表),对齐保证如下:
|
|
311
|
+
|
|
312
|
+
| 对齐维度 | Demo 侧 | Test 侧 | 保证方式 |
|
|
313
|
+
|----------|---------|---------|----------|
|
|
314
|
+
| API 覆盖 | 每个 API 有 Demo 按钮 | 每个 API 有 @Step | 映射表双向覆盖 |
|
|
315
|
+
| testID | `{apiName}-btn` | `scrollAndClickByTestId('{apiName}-btn')` | 命名规则统一 |
|
|
316
|
+
| 断言文本 | `Text` 前缀 `{API名}结果:` | `waitForText('{API名}结果')` | 逐字符复制 |
|
|
317
|
+
| 按钮定位 | title 含 API 名 | `textContains` 用 API 名子串 | 命名规则统一 |
|
|
318
|
+
| 结果值 | 固定前缀 + 动态值 | `waitForText` 前缀 + 值校验 | 前缀固定可可靠断言 |
|
|
319
|
+
|
|
320
|
+
### 3.2 各 API 类型的 @Step 写法
|
|
321
|
+
|
|
322
|
+
#### 3.2.1 TurboModule 同步方法
|
|
323
|
+
|
|
324
|
+
```typescript
|
|
325
|
+
@Step('调用 {apiName}({params})', { captureScreenshot: false, stepTimeout: 30000 })
|
|
326
|
+
async test{ApiName}(): Promise<void> {
|
|
327
|
+
await this.scrollAndClickByTestId('{apiName}-btn', '调用 {apiName}');
|
|
328
|
+
const el = await this.waitForText('{apiName}结果');
|
|
329
|
+
if (!el) {
|
|
330
|
+
throw new Error('点击后未出现{apiName}结果文本');
|
|
331
|
+
}
|
|
332
|
+
const text = this.getChildText(el) || el.text || '';
|
|
333
|
+
this.report(text.includes('{expectedValue}'), `结果: "${text.trim()}"`);
|
|
334
|
+
}
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
#### 3.2.2 TurboModule 异步方法
|
|
338
|
+
|
|
339
|
+
```typescript
|
|
340
|
+
@Step('调用 {apiName}({params})', { captureScreenshot: false, stepTimeout: 30000 })
|
|
341
|
+
async test{ApiName}(): Promise<void> {
|
|
342
|
+
await this.scrollAndClickByTestId('{apiName}-btn', '调用 {apiName}');
|
|
343
|
+
// 异步方法需要更长等待
|
|
344
|
+
const el = await this.waitForText('{apiName}结果', 10000);
|
|
345
|
+
if (!el) {
|
|
346
|
+
throw new Error('点击后未出现{apiName}结果文本');
|
|
347
|
+
}
|
|
348
|
+
const text = this.getChildText(el) || el.text || '';
|
|
349
|
+
this.report(!text.includes('加载中'), `结果: "${text.trim()}"`);
|
|
350
|
+
}
|
|
351
|
+
```
|
|
352
|
+
|
|
353
|
+
#### 3.2.3 事件回调
|
|
354
|
+
|
|
355
|
+
```typescript
|
|
356
|
+
@Step('监听 {eventName} 事件', { captureScreenshot: false, stepTimeout: 30000 })
|
|
357
|
+
async test{EventName}(): Promise<void> {
|
|
358
|
+
await this.scrollAndClickByTestId('startListen-btn', '开始监听 {eventName}');
|
|
359
|
+
// 触发事件(可能需要额外操作)
|
|
360
|
+
const el = await this.waitForText('{eventName}结果', 10000);
|
|
361
|
+
if (!el) {
|
|
362
|
+
throw new Error('未捕获到{eventName}事件');
|
|
363
|
+
}
|
|
364
|
+
const text = this.getChildText(el) || el.text || '';
|
|
365
|
+
this.report(text.includes('{eventName}结果'), `事件结果: "${text.trim()}"`);
|
|
366
|
+
// 清理
|
|
367
|
+
await this.scrollAndClickByTestId('stopListen-btn', '停止监听');
|
|
368
|
+
}
|
|
369
|
+
```
|
|
370
|
+
|
|
371
|
+
#### 3.2.4 组件属性
|
|
372
|
+
|
|
373
|
+
```typescript
|
|
374
|
+
@Step('切换 {componentName} 的 {propName} 属性', { captureScreenshot: false, stepTimeout: 30000 })
|
|
375
|
+
async test{ComponentName}{PropName}(): Promise<void> {
|
|
376
|
+
await this.scrollAndClickByTestId('toggle{PropName}-btn', '切换 {propName}');
|
|
377
|
+
const el = await this.waitForText('{propName}属性');
|
|
378
|
+
if (!el) {
|
|
379
|
+
throw new Error('未出现{propName}属性文本');
|
|
380
|
+
}
|
|
381
|
+
const text = this.getChildText(el) || el.text || '';
|
|
382
|
+
this.report(text.includes('{expectedValue}'), `属性值: "${text.trim()}"`);
|
|
383
|
+
}
|
|
384
|
+
```
|
|
385
|
+
|
|
386
|
+
#### 3.2.5 常量/枚举
|
|
387
|
+
|
|
388
|
+
```typescript
|
|
389
|
+
@Step('验证常量 {constantName}', { captureScreenshot: false, stepTimeout: 30000 })
|
|
390
|
+
async test{ConstantName}(): Promise<void> {
|
|
391
|
+
// 常量在页面加载时即显示,无需点击
|
|
392
|
+
const el = await this.waitForText('{constantName}常量');
|
|
393
|
+
if (!el) {
|
|
394
|
+
throw new Error('未出现{constantName}常量文本');
|
|
395
|
+
}
|
|
396
|
+
const text = this.getChildText(el) || el.text || '';
|
|
397
|
+
this.report(text.includes('{expectedValue}'), `常量值: "${text.trim()}"`);
|
|
398
|
+
}
|
|
399
|
+
```
|
|
400
|
+
|
|
401
|
+
---
|
|
402
|
+
|
|
403
|
+
## 4. 失败诊断与修复
|
|
404
|
+
|
|
405
|
+
### 4.1 级联取消机制
|
|
406
|
+
|
|
407
|
+
CPTF 框架的 `FunctionalTest.execute()` 在步骤超时时设置 `_cancelled = true`,此后所有 UIAutomation 调用经 `throwIfCancelled()` 抛 `'UIAutomation: 用例已取消'`。
|
|
408
|
+
|
|
409
|
+
结论:一个步骤超时 -> 后续全部步骤级联失败。看到批量"用例已取消",只需诊断第一个超时步骤。
|
|
410
|
+
|
|
411
|
+
### 4.2 常见失败速查
|
|
412
|
+
|
|
413
|
+
| 现象 | 根因 | 修复方向 |
|
|
414
|
+
|------|------|----------|
|
|
415
|
+
| `Cannot find module '@cptf/framework'` | shim NODE_PATH 失效 | 本地 link 依赖 |
|
|
416
|
+
| 步骤超时后批量"用例已取消" | 级联取消 | 修第一个超时步骤 |
|
|
417
|
+
| 单步超时但按钮已点击成功 | waitForText 匹配串错误 | 逐字符对照 Demo 代码修断言文本 |
|
|
418
|
+
| 未找到按钮 | testID 不匹配或未滚动到位 | 核对 testID,增大 maxScrolls |
|
|
419
|
+
| 异步方法步骤超时 | 等待时间不够 | 增加 waitForText timeout 到 10000+ |
|
|
420
|
+
|
|
421
|
+
> 实机运行与调试详见 `rnoh-cptf-test-run` SKILL
|