From planning-oracle-to-postgres-migration-integration-testing
Creates an integration testing plan for .NET data access artifacts during Oracle-to-PostgreSQL migrations. Analyzes a single project to identify repositories, DAOs, and service layers that interact with the database, then produces a structured testing plan.
How this skill is triggered — by the user, by Claude, or both
Slash command
/planning-oracle-to-postgres-migration-integration-testing:planning-oracle-to-postgres-migration-integration-testingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze a single target project to identify data access artifacts that require integration testing, then produce a structured, actionable testing plan.
Analyze a single target project to identify data access artifacts that require integration testing, then produce a structured, actionable testing plan.
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:
When defining recommended test cases, explicitly include:
NULL/missing values.timestamp without time zone or timestamp(0), with explicit timezone-application expectations.Write the plan to: .github/oracle-to-postgres-migration/Reports/{TARGET_PROJECT} Integration Testing Plan.md
MyApp.Postgres), so each instance targets one database.npx claudepluginhub simplycubed/skills --plugin planning-oracle-to-postgres-migration-integration-testingGenerates integration test cases for .NET data access artifacts during Oracle-to-PostgreSQL migrations. Creates DB-agnostic xUnit tests with deterministic seed data to validate behavior consistency across both database systems.
Scaffolds an xUnit integration test project with transaction-rollback and seed data infrastructure for validating Oracle-to-PostgreSQL database migrations in .NET solutions.
Discovers .NET solution projects, classifies them for Oracle-to-PostgreSQL migration eligibility, and writes a structured master plan file.