@ohos-cpf/3rdloop 0.0.1
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 +425 -0
- package/bin/3rdloop.mjs +48 -0
- package/lib/cli.js +741 -0
- package/lib/config.js +318 -0
- package/lib/doctor.js +114 -0
- package/lib/exit-codes.js +31 -0
- package/lib/opencode.js +156 -0
- package/lib/orch.js +427 -0
- package/lib/queries.js +264 -0
- package/lib/runner.js +979 -0
- package/lib/step.js +326 -0
- package/lib/ui.js +223 -0
- package/lib/workflow.js +291 -0
- package/lib/workflows.js +132 -0
- package/package.json +50 -0
- package/vendor/Server/Agent/SkillSelector/README.md +344 -0
- package/vendor/Server/Agent/SkillSelector/core/Agent.js +207 -0
- package/vendor/Server/Agent/SkillSelector/index.js +14 -0
- package/vendor/Server/Agent/SkillSelector/llm/llmClient.js +313 -0
- package/vendor/Server/Agent/SkillSelector/llm/prompts.js +161 -0
- package/vendor/Server/Agent/SkillSelector/llm/reactSteps.js +144 -0
- package/vendor/Server/Agent/SkillSelector/matcher/fuzzyMatcher.js +433 -0
- package/vendor/Server/Agent/SkillSelector/scanner/skillScanner.js +382 -0
- package/vendor/Server/Agent/SkillSelector/types.js +63 -0
- package/vendor/Server/Agent/SkillSelector/utils/actionWords.js +60 -0
- package/vendor/Server/Brain/AnalysisStrategies.js +422 -0
- package/vendor/Server/Brain/Brain.js +686 -0
- package/vendor/Server/Brain/DecompositionStrategies.js +621 -0
- package/vendor/Server/Brain/PlanPersistence.js +196 -0
- package/vendor/Server/Brain/SkillExecutor.js +251 -0
- package/vendor/Server/Brain/index.js +11 -0
- package/vendor/Server/CLI/cli.js +243 -0
- package/vendor/Server/CLI/opencode/index.js +804 -0
- package/vendor/Server/CLI/opencode.js +5 -0
- package/vendor/Server/DbUse/MessageArchive.js +61 -0
- package/vendor/Server/DbUse/StorageManager.js +107 -0
- package/vendor/Server/DbUse/adapters/BaseAdapter.js +94 -0
- package/vendor/Server/DbUse/adapters/FileAdapter.js +138 -0
- package/vendor/Server/DbUse/adapters/JsonAdapter.js +138 -0
- package/vendor/Server/DbUse/adapters/JsonlAdapter.js +114 -0
- package/vendor/Server/DbUse/adapters/SqliteAdapter.js +157 -0
- package/vendor/Server/DbUse/index.js +160 -0
- package/vendor/Server/DbUse/stores/SessionStore.js +279 -0
- package/vendor/Server/DbUse/stores/TaskExecutionStore.js +133 -0
- package/vendor/Server/DbUse/stores/TaskRegistryStore.js +262 -0
- package/vendor/Server/DbUse/stores/TaskStepStore.js +279 -0
- package/vendor/Server/FlexRunner/FlexRunner.js +1759 -0
- package/vendor/Server/FlexRunner/index.js +12 -0
- package/vendor/Server/Knowledge/KnowledgeImporter.js +523 -0
- package/vendor/Server/Knowledge/KnowledgeManager.js +341 -0
- package/vendor/Server/Knowledge/index.js +33 -0
- package/vendor/Server/LoopEngine/LoopEngine.js +1133 -0
- package/vendor/Server/LoopEngine/index.js +11 -0
- package/vendor/Server/Orchestrator/Orchestrator.js +1425 -0
- package/vendor/Server/Orchestrator/StepNode.js +312 -0
- package/vendor/Server/Orchestrator/index.js +13 -0
- package/vendor/Server/Routes/controllers/BrainController.js +241 -0
- package/vendor/Server/Routes/controllers/FlexRunnerController.js +1125 -0
- package/vendor/Server/Routes/controllers/HealthController.js +44 -0
- package/vendor/Server/Routes/controllers/KnowledgeImportController.js +355 -0
- package/vendor/Server/Routes/controllers/LoopEngineController.js +788 -0
- package/vendor/Server/Routes/controllers/OrchestratorController.js +911 -0
- package/vendor/Server/Routes/controllers/StatsController.js +57 -0
- package/vendor/Server/Routes/controllers/StreamController.js +67 -0
- package/vendor/Server/Routes/library/logger.js +179 -0
- package/vendor/Server/Routes/library/zipArchive.js +172 -0
- package/vendor/Server/Routes/router/Router.js +204 -0
- package/vendor/Server/Routes/routes/brain.js +47 -0
- package/vendor/Server/Routes/routes/flexrunner.js +72 -0
- package/vendor/Server/Routes/routes/health.js +28 -0
- package/vendor/Server/Routes/routes/index.js +57 -0
- package/vendor/Server/Routes/routes/knowledge.js +55 -0
- package/vendor/Server/Routes/routes/loopengine.js +58 -0
- package/vendor/Server/Routes/routes/orchestrator.js +61 -0
- package/vendor/Server/Routes/routes/registry.js +98 -0
- package/vendor/Server/Routes/routes/stats.js +23 -0
- package/vendor/Server/Routes/routes/stream.js +30 -0
- package/vendor/Server/Routes/server.js +202 -0
- package/vendor/Server/Routes/sse/SseHub.js +308 -0
- package/vendor/Server/Skills/acceptance-check/SKILL.md +174 -0
- package/vendor/Server/Skills/acceptance-check/references/PHASE1_ARTIFACT_COLLECTION.md +52 -0
- package/vendor/Server/Skills/acceptance-check/references/PHASE2_CRITERIA_EVALUATION.md +77 -0
- package/vendor/Server/Skills/arkts-code-check/SKILL.md +314 -0
- package/vendor/Server/Skills/arkts-code-check/references/CODE_CHECK_GUIDE.md +160 -0
- package/vendor/Server/Skills/arkts-code-check/references/FILE_TYPE_GUIDE.md +29 -0
- package/vendor/Server/Skills/arkts-code-check/references/PHASE1_INFO_COLLECTION.md +222 -0
- package/vendor/Server/Skills/arkts-code-check/references/REPORT_TEMPLATE.md +220 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/SKILL.md +329 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/arkts-library-demo-code/SKILL.md +291 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/API_SIGNATURE_CHECKS.md +68 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/BUILD_VALIDATION.md +184 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/CODE_STANDARDS.md +337 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/EXAMPLES.md +400 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/SYSTEM_API_LOOKUP.md +99 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/TEMPLATE.md +544 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/arkts-library-demo-coverage/SKILL.md +174 -0
- package/vendor/Server/Skills/arkts-library-demo-scenario/SKILL.md +321 -0
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/EXAMPLES.md +100 -0
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/TEMPLATE.md +185 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/SKILL.md +234 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +103 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/CHECK_DIMENSIONS.md +89 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/COMPLIANCE_CHECKLIST.md +62 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/KB_QUERY_GUIDE.md +108 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/MCP_TOOL_DISCOVERY.md +124 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/REPORT_TEMPLATE.md +90 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/SCORING_FORMULA.md +57 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/scripts/validate-skill.cjs +259 -0
- package/vendor/Server/Skills/arkts-library-interface-spec/SKILL.md +97 -0
- package/vendor/Server/Skills/arkts-library-memory-leak-check/SKILL.md +392 -0
- package/vendor/Server/Skills/arkts-library-source-clone/SKILL.md +113 -0
- package/vendor/Server/Skills/arkts-library-stability-check/SKILL.md +313 -0
- package/vendor/Server/Skills/arkts-library-stability-check/assets/REPORT_TEMPLATE.md +154 -0
- package/vendor/Server/Skills/arkts-library-stability-check/references/CHECKLIST.md +166 -0
- package/vendor/Server/Skills/arkts-library-stability-check/references/CODE_EXAMPLES.md +309 -0
- package/vendor/Server/Skills/arkts-library-stability-check/references/SCORING_RULES.md +90 -0
- package/vendor/Server/Skills/arkts-library-stability-check/scripts/validate-skill.cjs +282 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/SKILL.md +361 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/assets/REPORT_TEMPLATE.md +146 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/CHECKLIST.md +253 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/MCP_TOOL_USAGE.md +115 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/scripts/validate-skill.cjs +263 -0
- package/vendor/Server/Skills/arkts-library-xts-code/SKILL.md +455 -0
- package/vendor/Server/Skills/arkts-library-xts-code/assets/report-template.md +60 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/ACCESS_MODIFIER_PRECHECK.md +76 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/BUILD_VERIFICATION.md +200 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/CODE_STANDARDS.md +519 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/SUBAGENT_PROMPT_TEMPLATE.md +276 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/SYSTEM_API_LOOKUP.md +93 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/XTS_TEMPLATE.md +767 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/precheck-access-modifiers.cjs +221 -0
- package/vendor/Server/Skills/arkts-library-xts-code-fix/SKILL.md +229 -0
- package/vendor/Server/Skills/arkts-library-xts-coverage/SKILL.md +97 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/SKILL.md +194 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/references/EXAMPLES.md +576 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TEMPLATE.md +575 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TESTABILITY_GUIDE.md +182 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/SKILL.md +491 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/references/error-fixing-examples.md +217 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/flutter-code-check/SKILL.md +299 -0
- package/vendor/Server/Skills/flutter-code-check/assets/OUTPUT_TEMPLATE.md +312 -0
- package/vendor/Server/Skills/flutter-code-check/references/CHECKLIST.md +190 -0
- package/vendor/Server/Skills/flutter-code-check/references/PLATFORMS.md +134 -0
- package/vendor/Server/Skills/flutter-code-check/scripts/validate-skill.cjs +259 -0
- package/vendor/Server/Skills/flutter-interface/README.md +75 -0
- package/vendor/Server/Skills/flutter-interface/SKILL.md +291 -0
- package/vendor/Server/Skills/flutter-interface/references/EXAMPLES.md +336 -0
- package/vendor/Server/Skills/flutter-interface/references/GIT_CLONE_GUIDE.md +190 -0
- package/vendor/Server/Skills/flutter-interface/references/SCRIPT_REFERENCE.md +258 -0
- package/vendor/Server/Skills/flutter-interface/references/TEMPLATE.md +254 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/SKILL.md +518 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/references/CHECKLIST.md +382 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +342 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/references/PLATFORM_LIMITATION_GUIDE.md +71 -0
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/SKILL.md +519 -0
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/references/CHECKLIST.md +407 -0
- package/vendor/Server/Skills/flutter-library-memory-leak-check/SKILL.md +653 -0
- package/vendor/Server/Skills/flutter-library-memory-leak-check/references/CHECKLIST.md +397 -0
- package/vendor/Server/Skills/flutter-library-stability-check/SKILL.md +745 -0
- package/vendor/Server/Skills/flutter-library-stability-check/references/CHECKLIST.md +721 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/SKILL.md +414 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/assets/REPORT_TEMPLATE.md +150 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/CHECKLIST.md +304 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCORING_RULES.md +265 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCRIPT_USAGE.md +286 -0
- package/vendor/Server/Skills/knowledge-import/SKILL.md +383 -0
- package/vendor/Server/Skills/knowledge-import/references/MCP_TOOL_USAGE.md +165 -0
- package/vendor/Server/Skills/knowledge-import/references/SKILL_LOCATOR_GUIDE.md +91 -0
- package/vendor/Server/Skills/knowledge-import/references/SKILL_OPTIMIZATION_GUIDE.md +127 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/SKILL.md +301 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/assets/PR_ISSUE_TEMPLATE.md +105 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/references/GITCODE_API.md +127 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/scripts/gitcode-api.cjs +208 -0
- package/vendor/Server/Skills/rn-code-check/SKILL.md +321 -0
- package/vendor/Server/Skills/rn-code-check/references/API-GUIDE.md +235 -0
- package/vendor/Server/Skills/rn-code-check/references/CHECKLIST.md +189 -0
- package/vendor/Server/Skills/rn-code-check/references/REPORT-TEMPLATE.md +247 -0
- package/vendor/Server/Skills/rn-lib-add-example/SKILL.md +198 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/APP_RENAME_GUIDE.md +40 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/SHELL_ADAPTATION_CHECKLIST.md +78 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/TEMPLATE_REPO_GUIDE.md +70 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/VERIFICATION_GUIDE.md +47 -0
- package/vendor/Server/Skills/rn-lib-add-example/scripts/create-example.cjs +252 -0
- package/vendor/Server/Skills/rn-lib-update-doc/SKILL.md +176 -0
- package/vendor/Server/Skills/rn-lib-update-doc/config.json +5 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/changelog-template.md +35 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/format-diff.md +137 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/link-registry.json +33 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2-overview.md +40 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2.md +429 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/detect-readme-format.cjs +105 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/find-usage-doc.cjs +90 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/link-verify.cjs +213 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-changelog.cjs +73 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-package-meta.cjs +258 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-readme-links.cjs +341 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/resolve-usage-docs.cjs +67 -0
- package/vendor/Server/Skills/rn-library-consistency-check/SKILL.md +299 -0
- package/vendor/Server/Skills/rn-library-consistency-check/assets/REPORT_TEMPLATE.md +293 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_COMPONENT_CHECK_GUIDE.md +857 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_TURBOMODULE_CHECK_GUIDE.md +856 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/CHECKLIST.md +157 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_COMPONENT_CHECK_GUIDE.md +801 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_TURBOMODULE_CHECK_GUIDE.md +684 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +233 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/NATIVE_COMPONENT_IDENTIFICATION.md +1373 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/SCORING_STANDARD.md +220 -0
- package/vendor/Server/Skills/rn-library-consistency-check/scripts/validate-skill.py +245 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/SKILL.md +263 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL.md +414 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL_en.md +413 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +311 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CHECK_CHECKLIST.md +355 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CROSS_VALIDATION_GUIDE.md +115 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/DOC_COLLECTION_GUIDE.md +139 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/EXAMPLES.md +586 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/GOTCHAS.md +57 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/scripts/validate-skill.py +259 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/SKILL.md +301 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/assets/REPORT_TEMPLATE.md +148 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/DOC_ANNOTATION_GUIDE.md +118 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/SCRIPT_USAGE_GUIDE.md +168 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/URL_PARSING_RULES.md +176 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/SKILL.md +274 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/case-template.md +45 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/rule-template.md +25 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/PR_FETCH_GUIDE.md +61 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/RULE_TEMPLATE_GUIDE.md +165 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/scripts/fetch-pr-info.py +239 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/SKILL.md +263 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/assets/REPORT_TEMPLATE.md +96 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/COMPLIANCE_CHECKLIST.md +58 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/INSPECTION_GUIDE.md +99 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/PRESCREEN_GUIDE.md +64 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/SOURCE_PREP_GUIDE.md +75 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/scripts/validate-known-issue-report.py +164 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/SKILL.md +339 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/assets/REPORT_TEMPLATE.md +83 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/CHECKLIST.md +859 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/HARMONY_CODE_PATTERNS.md +122 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/scripts/scan_harmony_code.py +279 -0
- package/vendor/Server/Skills/rn-library-stability-check/SKILL.md +273 -0
- package/vendor/Server/Skills/rn-library-stability-check/assets/REPORT_TEMPLATE.md +129 -0
- package/vendor/Server/Skills/rn-library-stability-check/references/CHECKLIST.md +581 -0
- package/vendor/Server/Skills/rn-library-stability-check/references/SCORING_RULES.md +138 -0
- package/vendor/Server/Skills/rn-library-stability-check/scripts/scan-harmony-code.py +168 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/SKILL.md +506 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/CHECKLIST.md +280 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/DEMO_LOCATION.md +221 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/REPORT_TEMPLATE.md +209 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/SCRIPT_USAGE.md +325 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/SKILL.md +279 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/assets/TEST_FILE_TEMPLATES.md +404 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_TROUBLESHOOTING.md +185 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_WORKFLOW.md +265 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COMMON_CONFIG.md +189 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/CONFIG_GUIDE.md +203 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COVERAGE_ANALYZER.md +147 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/DESIGN_DOC_GUIDE.md +148 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_FLOW.md +165 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_STRATEGY.md +195 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/HARMONY_SCANNER.md +249 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/JEST_FRAMEWORK.md +235 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/PLATFORM_COMPAT.md +161 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/RN_TEST_PATTERNS.md +413 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/SOURCE_PARSER.md +235 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TEST_CONVENTIONS.md +245 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TROUBLESHOOTING.md +282 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/USAGE_GUIDE.md +251 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/SKILL.md +469 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/CPTF_TEST_TEMPLATE.md +310 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/DEMO_PAGE_TEMPLATE.md +303 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/CPTF_TEST_GENERATION_GUIDE.md +421 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/DEMO_GENERATION_GUIDE.md +358 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/QUALITY_CHECKLIST.md +114 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/SPEC_PARSING_GUIDE.md +274 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/scripts/validate-rnoh-cptf-api-test.sh +185 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/SKILL.md +191 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/assets/TEST_TEMPLATE.md +216 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/CPTF_SETUP.md +107 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/DEMO_ANALYSIS.md +120 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/scripts/validate-rnoh-cptf-test.sh +108 -0
- package/vendor/Server/Skills/rnoh-cptf-test-run/SKILL.md +237 -0
- package/vendor/Server/Skills/rnoh-cptf-test-run/references/DEBUG_PLAYBOOK.md +261 -0
- package/vendor/Server/Skills/rnoh-cptf-test-run/scripts/validate-run-env.sh +112 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/SKILL.md +498 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/adapt-checklist.md +270 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/api-migration-checklist.md +164 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/common-compile-errors.md +556 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/deveco-cli-tools.md +459 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/edge-cases.md +65 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/har-tgz-build.md +512 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/version-compat-matrix.md +132 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/scripts/auto-integrate.sh +424 -0
- package/vendor/Server/Skills/rnoh-lib-demo-coverage/SKILL.md +137 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/SKILL.md +306 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/DEMO_PAGE_TEMPLATE.md +485 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/INDEX_TEMPLATE.md +172 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/DEMO_CODE_RULES.md +422 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/QUALITY_CHECKLIST.md +95 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/SOURCE_EXPLORATION.md +169 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/SKILL.md +554 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/assets/DEMO_DOC_TEMPLATE.md +106 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/COVERAGE_INCREMENTAL.md +216 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/DEMO_DESIGN_RULES.md +413 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/OUTPUT_FORMAT.md +269 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/QUALITY_CHECKLIST.md +98 -0
- package/vendor/Server/Skills/rnoh-lib-func-test/SKILL.md +337 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/SKILL.md +722 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/assets/PORT_REPORT_TEMPLATE.md +219 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/DEMO_PORTING_GUIDE.md +345 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/PORT_VERIFICATION.md +269 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/RNT_PROJECT_STRUCTURE.md +173 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/analyze-demo-deps.cjs +267 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/detect-rnoh-version.cjs +174 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/find-rnt-demo.sh +111 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/port-demo.sh +186 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/read-lib-meta.cjs +150 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/SKILL.md +296 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/jest-troubleshooting.md +371 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/port-test-demo-guide.md +212 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/runtime-troubleshooting.md +345 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/unit-test-template.md +223 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/scripts/port-test-demo.sh +1053 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/SKILL.md +255 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_ADAPTATION.md +77 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_API_LOOKUP.md +224 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/script-reference.md +174 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/detect-upstream-version.js +967 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/generate-diff.js +1798 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/package.json +5 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/templates/report-template.md +137 -0
- package/vendor/Server/Skills/rnoh-lib-xts-coverage/SKILL.md +145 -0
- package/vendor/Server/Skills/skill-generator/SKILL.md +365 -0
- package/vendor/Server/Skills/skill-generator/assets/SKILL_TEMPLATE.md +183 -0
- package/vendor/Server/Skills/skill-generator/references/COMPLIANCE_CHECKLIST.md +82 -0
- package/vendor/Server/Skills/skill-generator/references/KB_QUERY_GUIDE.md +110 -0
- package/vendor/Server/Skills/skill-generator/references/MCP_TOOL_DISCOVERY.md +122 -0
- package/vendor/Server/Skills/skill-generator/references/SKILL_SPEC.md +121 -0
- package/vendor/Server/Skills/skill-generator/scripts/validate-skill.cjs +259 -0
- package/vendor/Server/Skills/task-analysis/SKILL.md +234 -0
- package/vendor/Server/Skills/task-analysis/assets/OUTPUT_EXAMPLES.md +160 -0
- package/vendor/Server/Skills/task-analysis/references/ACCEPTANCE_CRITERIA_GUIDE.md +190 -0
- package/vendor/Server/Skills/task-analysis/references/ANALYSIS_SCHEMA.md +224 -0
- package/vendor/Server/Skills/task-analysis/references/INTEGRATION_CONTEXT.md +162 -0
- package/vendor/Server/Skills/task-analysis/references/LESSONS_LEARNED.md +55 -0
- package/vendor/Server/Skills/task-analysis/references/REPLAN_CONTEXT_GUIDE.md +126 -0
- package/vendor/Server/Skills/task-analysis/scripts/validate-analysis-output.sh +256 -0
- package/vendor/Server/Skills/task-decomposition/SKILL.md +529 -0
- package/vendor/Server/Skills/task-decomposition/assets/OUTPUT_EXAMPLES.md +451 -0
- package/vendor/Server/Skills/task-decomposition/references/ACCEPTANCE_CRITERIA_GUIDE.md +179 -0
- package/vendor/Server/Skills/task-decomposition/references/DEPENDENCY_GRAPH_GUIDE.md +152 -0
- package/vendor/Server/Skills/task-decomposition/references/INTEGRATION_CONTEXT.md +175 -0
- package/vendor/Server/Skills/task-decomposition/references/REPLAN_CONTEXT_GUIDE.md +195 -0
- package/vendor/Server/Skills/task-decomposition/references/TASK_DECOMPOSITION_TEMPLATES.md +226 -0
- package/vendor/Server/Skills/task-decomposition/scripts/list-available-skills.cjs +263 -0
- package/vendor/Server/Skills/task-decomposition/scripts/skill-blacklist.json +29 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-decomposition-output.cjs +376 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-param-consistency.cjs +259 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-specified-skills.cjs +216 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-step-graph.cjs +425 -0
- package/vendor/Server/Skills/tpc-cpp-check/SKILL.md +427 -0
- package/vendor/Server/Skills/tpc-cpp-check/references/CHECKLIST.md +214 -0
- package/vendor/Server/Skills/tpc-cpp-check/references/HPKBUILD_GUIDE.md +235 -0
- package/vendor/Server/Skills/tpc-cpp-check/references/REPORT_TEMPLATE.md +250 -0
- package/vendor/Server/TestCheck/TestCheck.js +775 -0
- package/vendor/Server/TestCheck/index.js +11 -0
- package/vendor/Server/library/McpToolGuide.js +280 -0
- package/vendor/Server/library/StatsService.js +127 -0
- package/vendor/Server/library/cstTime.js +16 -0
- package/vendor/Server/package.json +17 -0
- package/vendor/VERSION +3 -0
- package/workflows/pr-check.mjs +106 -0
|
@@ -0,0 +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
|