Testing & QAlow risk
planning-oracle-to-postgres-migration-integration-testing
Creates an integration testing plan for .NET data access artifacts during Oracle-to-PostgreSQL database migrations. Analyzes a single project to identify repositories, DAOs, and service layers that interact with the database, then produces a structured testing plan. Use when planning integration test coverage for a migrated project, identifying which data access methods need tests, or preparing for Oracle-to-PostgreSQL migration validation.
github/awesome-copilot·skills/planning-oracle-to-postgres-migration-integration-testing/SKILL.md
66/ 100推荐值
导入这个 Skill
选择你的 coding agent,复制项目级或个人级安装命令。
导入当前项目.agents/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a codex -y导入个人环境~/.agents/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a codex -g -y导入当前项目.claude/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a claude-code -y导入个人环境~/.claude/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a claude-code -g -y导入当前项目.agents/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a github-copilot -y导入个人环境~/.copilot/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a github-copilot -g -y导入当前项目.agents/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a cursor -y导入个人环境~/.cursor/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a cursor -g -y导入当前项目.agents/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a gemini-cli -y导入个人环境~/.gemini/skills/planning-oracle-to-postgres-migration-integration-testing
npx skills add https://github.com/github/awesome-copilot/tree/0aaced533251f5b86c69dfbc5e55db74c4b4d1af/skills/planning-oracle-to-postgres-migration-integration-testing -a gemini-cli -g -yNative Gemini CLI
gemini skills install https://github.com/github/awesome-copilot.git --scope workspace --path skills/planning-oracle-to-postgres-migration-integration-testing⚠ 安装命令使用开源 skills CLI。执行前请检查来源、脚本和权限。
Skill 指令
在 GitHub 查看原始文件 ↗# Planning Integration Testing for Oracle-to-PostgreSQL Migration
Analyze a single target project to identify data access artifacts that require integration testing, then produce a structured, actionable testing plan.
## Workflow
```
Progress:
- [ ] Step 1: Identify data access artifacts
- [ ] Step 2: Classify testing priorities
- [ ] Step 3: Write the testing plan
```
**Step 1: Identify data access artifacts**
Scope to the target project only. Find classes and methods that interact directly with the database — repositories, DAOs, stored procedure callers, service layers performing CRUD operations.
**Step 2: Classify testing priorities**
Rank artifacts by migration risk. Prioritize methods that use Oracle-specific features (refcursors, `TO_CHAR`, implicit type coercion, `NO_DATA_FOUND`) over simple CRUD.
**Step 3: Write the testing plan**
Write a markdown plan covering:
- List of testable artifacts with method signatures
- Recommended test cases per artifact
- Seed data requirements
- Known Oracle→PostgreSQL behavioral differences to validate
## Output
Write the plan to: `.github/oracle-to-postgres-migration/Reports/{TARGET_PROJECT} Integration Testing Plan.md`
## Key Constraints
- **Single project scope** — only plan tests for artifacts within the target project.
- **Database interactions only** — skip business logic that does not touch the database.
- **Oracle is the golden source** — tests should capture Oracle's expected behavior for comparison against PostgreSQL.
- **No multi-connection harnessing** — migrated applications are copied and renamed (e.g., `MyApp.Postgres`), so each instance targets one database.