abp-integration-testing

abp-integration-testing is a skill for Claude Code from thapaliyabikendra/ai-artifacts. It costs 90 tokens per session (4,253 once invoked), scanned A, original, Apache-2.0.

A guide for writing integration tests for ABP Framework applications built with ASP.NET Core. Integration tests check that real components—such as databases, permissions, validation, and tenant filtering—work together.

In plain words
What is it for?
Use it to test application services and HTTP APIs, including repositories, database queries, authorization, validation, unit-of-work commits, and multi-tenant data isolation.
Why use it?
Mock-based unit tests can miss problems in framework wiring and database behavior. These tests verify the actual application setup and persistence rules.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to test application services and HTTP APIs, including repositories, database queries, authorization, validation, unit-of-work commits, and multi-tenant data isolation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thapaliyabikendra/ai-artifacts/abp-integration-testing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add thapaliyabikendra/ai-artifacts --skill abp-integration-testing
Clone the repo
git clone --depth 1 https://github.com/thapaliyabikendra/ai-artifacts

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for abp-integration-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/thapaliyabikendra/ai-artifacts/abp-integration-testing/github.svg)](https://agentmods.dev/skills/thapaliyabikendra/ai-artifacts/abp-integration-testing)
Your own site
<a href="https://agentmods.dev/skills/thapaliyabikendra/ai-artifacts/abp-integration-testing"><img src="https://agentmods.dev/badge/skills/thapaliyabikendra/ai-artifacts/abp-integration-testing/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for abp-integration-testing

Your own site · 80×15
<a href="https://agentmods.dev/skills/thapaliyabikendra/ai-artifacts/abp-integration-testing"><img src="https://agentmods.dev/badge/skills/thapaliyabikendra/ai-artifacts/abp-integration-testing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,253 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00090 $0.04253
Opus 5 $0.00045 $0.02126
Sonnet 5 $0.00018 $0.00851
Haiku 4.5 $0.00009 $0.00425

Measured 9d ago against content hash e8baac88aec1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

abp-integration-testing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/abp-integration-testing/SKILL.md · 536 lines

How it starts

The opening of the file, as written. The whole thing — 536 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are an integration test specialist for ASP.NET Core ABP Framework projects. Your goal is to generate real integration tests that exercise actual framework wiring, persistence, authorization, and ABP infrastructure — not mocked unit tests.


Step 1 — Decide Integration vs Unit Test Scope

Integration tests prove framework integration works. Unit tests prove logic in isolation. Ask yourself:

Does the test need to prove… Test type Example
Business logic with all dependencies mocked Unit test "CreateAsync validates input and calls repository"
EF Core query translation, includes, filters Integration "GetListAsync filters soft-deleted entities via ABP data filter"
ABP authorization actually blocks calls Integration "CreateAsync throws AbpAuthorizationException when permission denied"
Real repository persistence + UnitOfWork commit Integration "DeleteAsync removes entity from database"
Multi-tenant data isolation via TenantId filter Integration "GetListAsync only returns current tenant's entities"
ABP validation pipeline runs FluentValidation rules Integration "CreateAsync throws AbpValidationException for invalid DTO"
Object mapping via AutoMapper profiles Integration "UpdateAsync maps DTO to entity correctly"
HTTP route, model binding, [ApiController] filters HTTP integration "POST /api/consumers returns 201 Created"
HTTP auth middleware + JWT validation HTTP integration "GET /api/consumers returns 401 without token"

Decision tree:

Is the service already covered by unit tests? 
├─ Yes → Does the failure involve ABP infrastructure (repos, auth, filters, UoW)?
│  ├─ Yes → Write integration test
│  └─ No → Skip, unit tests are sufficient
└─ No → Start with unit tests first, then add integration tests for framework concerns

When in doubt: Unit tests are faster and easier to maintain. Only upgrade to integration when framework behavior is part of the requirement.


Read the full file on GitHub · 536 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 536 lines · 90 tokens per session scan A e8baac88aec1

Subscribe to this mod's changes

abp-integration-testing is a skill published in the GitHub repository thapaliyabikendra/ai-artifacts (24 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 90 tokens to every session and 4,253 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

api-tester

A tool for creating and checking API tests from the real API contract and implementation. An API is the agreed way that software sends requests and receives responses.

laolaoshiren/claude-code-skills-zh · 86 tokens

backend/testing-guide

A guide for writing backend tests: small unit tests, tests that check connected parts such as an API and database, and end-to-end tests that follow a complete user flow.

echoVic/boss-skill · 30 tokens

endpoint-probe

Probes each major Agent Monitor API route — /api/stats, /api/analytics, /api/sessions, /api/pricing/cost, /api/workflows/runs, /api/cc-config/overview — and reports each one's HTTP status, latency, and response shape, flagging which are reachable. Use to verify a dashboard install is wired up correctly.

hoangsonww/Claude-Code-Agent-Monitor · 80 tokens

emulate-seed

Generate emulate seed configs for stateful API emulation. Wraps Vercel's emulate tool for GitHub, Vercel, Google OAuth, Slack, Apple Auth, Microsoft Entra, AWS, Okta, Clerk, Resend, Stripe, and MongoDB Atlas APIs — full state machines, not mocks. Use when setting up test environments, CI pipelines, integration tests…

yonatangross/orchestkit · 86 tokens

api-smoke-testing

Start the dev server, discover API routes from the codebase, hit every endpoint, and report which ones return errors.

spencerpauly/awesome-cursor-skills · 29 tokens

Kafka Event-Driven Testing

Test Kafka-based event-driven systems, producer and consumer integration tests with Testcontainers, schema compatibility gates, idempotency and ordering verification, dead-letter handling, and end-to-end event flow assertions.

PramodDutta/qaskills · 45 tokens