npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vaallk/plsql-test-mcp

v0.1.12

Published

MCP server for IFS PL/SQL unit test analysis, annotation, generation, and execution

Readme

PL/SQL Test MCP

MCP server for IFS Cloud PL/SQL unit testing — mirrors the architecture of integration-testing-mcp and delegates deploy/run steps to ifs-f1-codegen-dev.

Develop MCP to identify if a function/procedure is unit testable and generate the test.

Workflow

flowchart TD
    A[checkUnitTestability] --> B{Testable?}
    B -->|No| C[annotateIgnoreUnitTest]
    B -->|Yes| D[generateUnitTest]
    D --> E[generate_code / generate_and_deploy via ifs-f1-codegen-dev]
    E --> F[Verify test passes]
    C --> E

Tools

| Tool | Description | |------|-------------| | checkUnitTestability | Parse .plsql/.plsvc and assess pltst testability | | annotateIgnoreUnitTest | Add @IgnoreUnitTest <reason> before a method | | generateUnitTest | Analyze method body, generate deploy-safe mocks, data-driven FOR loops, and assertions | | processUnitTestCoverage | Batch: annotate all non-testable methods + generate all missing auto-safe tests for one file | | runUnitTest | Return generate_and_deploy instructions for ifs-f1-codegen-dev | | runPlsqlTestWorkflow | End-to-end: check → annotate OR generate → run prep | | getIgnoreUnitTestRules | List supported ignore reasons |

Supported @IgnoreUnitTest reasons

| Reason | When to use | |--------|-------------| | TrivialFunction | Simple getter/pass-through | | MethodOverride | @Override CRUD/framework methods | | DMLOperation | INSERT/UPDATE/DELETE/MERGE in body | | NoOutParams | Procedure with no OUT/IN OUT params | | DynamicStatement | EXECUTE IMMEDIATE / dynamic SQL | | BLOBDataType / CLOBDataType | Large object types | | PLSQLInSQL | PL/SQL embedded in SQL views | | PipelinedFunction | Pipelined table functions |

Cursor integration

Add to Cursor MCP settings:

{
  "mcpServers": {
    "plsql-test": {
      "command": "node",
      "args": ["C:/ifsapps-new/plsql-test-mcp/dist/index.js"]
    }
  }
}

Or after publishing:

{
  "mcpServers": {
    "plsql-test": {
      "command": "npx",
      "args": ["-y", "@ifs/[email protected]"]
    }
  }
}

Development

cd c:/ifsapps-new/plsql-test-mcp
npm install
npm run build
npm start

Deploy-safe generation (v0.1.4)

The generator avoids patterns that break AV_*_TST compilation:

  • No UTF-8 BOM on written .pltst files
  • VARCHAR2(2000) for all generated IS-section locals (bare VARCHAR2 causes PLS-00215)
  • Pre-write validation rejects bare VARCHAR2, BOM, and post-loop generated tests
  • Skips %ROWTYPE return types and SELECT * INTO %ROWTYPE (manual test required)
  • Skips CRUD modify methods using Get_Object_By_Id___ + Unpack___
  • Expression SELECT columns (round(cast(...))) mapped to safe mock column names
  • FOR loop column order matches IFS convention: expected_ | input_param_
  • Not-found cases stay inside the FOR loop (no post-loop statements)
  • Skips @IgnoreUnitTest when the method already has a UNITTEST block
  • Special mocks for Get_Wp_Id, Has_Skills_Assigned_In_Turn, Get_Fault_Id_From_Record_Id, Get_AOS_Days, Get_Hm_Contract_Id_By_Barcode

Batch coverage example

processUnitTestCoverage({
  sourceFile: "C:/ifsapps-new/workspace/adcom/source/adcom/database/AvFault.plsql",
  workspace: "C:/ifsapps-new/workspace",
  jiraKey: "PJZ-12345",
  confirmed: true
})

Example

Analyze McprActivityRelation.plsql:

checkUnitTestability({
  sourceFile: "C:/ifsapps-new/workspace/prjrep/source/prjrep/database/McprActivityRelation.plsql",
  methodName: "Is_Circular_Link___"
})

Generate test:

generateUnitTest({
  sourceFile: ".../McprActivityRelation.plsql",
  methodName: "Is_Circular_Link___",
  workspace: "C:/ifsapps-new/workspace",
  jiraKey: "PJZ-12345",
  confirmed: true
})

Run via ifs-f1-codegen-dev:

generate_and_deploy({
  input_files: [".../McprActivityRelation.plsql", ".../McprActivityRelation.pltst"],
  environment_key: "26r1-dev-lkp",
  workspace: "C:/ifsapps-new/workspace",
  confirmed: true
})

Note on plvst

IFS uses .pltst files for both .plsql and .plsvc unit tests. No separate .plvst extension exists in the codebase — this MCP targets .pltst.

Related

  • integration-testing-mcp — reference MCP architecture
  • ifs-f1-codegen-dev — code generation, SQLcl deploy, live DB inspect