MR
Mayur Rathi
@github
⭐ 34.1k GitHub stars

Planning-Oracle-To-Postgres-Migration-Integration-Testing

Planning-Oracle-To-Postgres-Migration-Integration-Testing是一款code方向的AI技能,核心价值是Creates an integration testing plan for ,可用于解决开发者在code领域的实际问题,帮助用户提升效率、自动化重复任务或优化工作流。

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 in

Last verified on: 2026-05-30
mkdir -p ./skills/planning-oracle-to-postgres-migration-integration-testing && curl -sfL https://raw.githubusercontent.com/github/awesome-copilot/main/skills/planning-oracle-to-postgres-migration-integration-testing/SKILL.md -o ./skills/planning-oracle-to-postgres-migration-integration-testing/SKILL.md

Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).

Skill Content

# 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


text
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.

🎯 Best For

  • QA engineers
  • Developers writing unit tests
  • Data analysts
  • Business intelligence teams
  • Claude users

💡 Use Cases

  • Generating test cases for edge conditions
  • Writing integration test suites
  • Finding patterns in customer data
  • Creating automated dashboards

📖 How to Use This Skill

  1. 1

    Install the Skill

    Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.

  2. 2

    Load into Your AI Assistant

    Open Claude or GitHub Copilot and reference the skill. Paste the SKILL.md content or use the system prompt tab.

  3. 3

    Apply Planning-Oracle-To-Postgres-Migration-Integration-Testing to Your Work

    Open your project in the AI assistant and ask it to apply the skill. Start with a small module to verify the output quality.

  4. 4

    Review and Refine

    Review AI suggestions before committing. Run tests, check for regressions, and iterate on the skill output.

❓ Frequently Asked Questions

Does this generate test mocks?

Many testing skills include mock generation. Check the install command and skill content for details.

Can this connect to my database directly?

Most data skills accept CSV or JSON input. Database connectors are listed in the Works With section.

Is Planning-Oracle-To-Postgres-Migration-Integration-Testing compatible with Cursor and VS Code?

Yes — this skill works with any AI coding assistant including Cursor, VS Code with Copilot, and JetBrains IDEs.

Do I need specific dependencies for Planning-Oracle-To-Postgres-Migration-Integration-Testing?

Check the install command and Works With section. Most code skills only require the AI assistant and your codebase.

How do I install Planning-Oracle-To-Postgres-Migration-Integration-Testing?

Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/planning-oracle-to-postgres-migration-integration-testing/SKILL.md, ready to use.

⚠️ Common Mistakes to Avoid

Not testing edge cases

AI tends to generate happy-path tests. Manually review for boundary conditions.

Not validating data quality

AI analysis is only as good as your input data. Profile and clean data before analysis.

Skipping validation

Always test AI-generated code changes, even for simple refactors.

Missing dependency updates

Check if the skill requires updated dependencies or new packages.

🔗 Related Skills