惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
量子位
有赞技术团队
有赞技术团队
博客园 - 叶小钗
博客园 - 聂微东
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
小众软件
小众软件
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Only 3 Types of Assertions You Need for REST API Tests
Sushant Joshi · 2026-06-26 · via DEV Community

I went through 2,400 of our team's API test assertions last month. 91% of them fall into three categories.*

That number surprised me.

Not because it was low.

Because it was so high.

I expected to find dozens of assertion patterns:

  • Header assertions
  • Pagination assertions
  • Security assertions
  • Performance assertions
  • Database validations
  • Custom business rules

Instead, almost everything we had written could be grouped into just three buckets.

When I removed duplicate patterns and categorized the assertions, 91% of them fit into:

  1. Schema Assertions
  2. Identity Assertions
  3. Side-Effect Assertions

The remaining 9%?

Most of them probably shouldn't exist.

If you're building or maintaining REST API tests, understanding these three categories will dramatically simplify how you think about testing.


Why Most API Test Suites Become Hard to Maintain

A lot of test suites grow organically.

A developer writes:

expect(response.status).toBe(200);

Another adds:

expect(response.body.name).toBe('John');

Someone else adds:

expect(response.body.items.length).toBe(3);

Eventually the suite contains thousands of assertions.

Many of them:

  • Duplicate each other
  • Validate implementation details
  • Add maintenance without adding confidence

The goal isn't to write more assertions.

The goal is to write the assertions that actually matter.


1. Schema Assertions (The One Most Tests Skip)

This is the most undervalued type of API assertion.

A schema assertion answers:

Does the response still match the contract?

Suppose your endpoint returns:

{
  "id": 123,
  "name": "John Smith",
  "email": "john@example.com"
}

Tomorrow someone changes it to:

{
  "id": "123",
  "fullName": "John Smith"
}

The endpoint still returns:

200 OK

But consumers may immediately break.

This is why schema assertions matter.


What Schema Assertions Validate

  • Required fields exist
  • Data types are correct
  • Fields have not disappeared
  • Arrays contain the right structure
  • Response contracts remain compatible

Example JSON Schema Assertion

expect(response.body).toMatchSchema({
  type: 'object',
  required: ['id', 'name'],
  properties: {
    id: {
      type: 'integer'
    },
    name: {
      type: 'string'
    }
  }
});


Why Teams Skip This

Because checking:

expect(response.status)
  .toBe(200);

feels sufficient.

It isn't.

The biggest API regressions I see are contract changes that still return successful responses.

This is why json schema assertion techniques provide so much value.


Copy-Paste Template: Schema Assertion

expect(response.body)
  .toMatchSchema(schema);

Or:

expect(response.body.id)
  .toEqual(expect.any(Number));


2. Identity Assertions (The Value You Actually Care About)

This is the category most people think of when they hear "API testing."

An identity assertion answers:

Did the API return the correct business value?

Example:

{
  "discount": 20
}

The contract may be valid.

The endpoint may return 200.

But if the expected discount is:

{
  "discount": 50
}

the API is still broken.


Identity Assertions Validate

  • Business calculations
  • Field values
  • Sorting
  • Filtering
  • Authorization decisions
  • Domain rules

Example

expect(response.body.discount)
  .toBe(20);

Or:

expect(response.body.status)
  .toBe('ACTIVE');


Why Identity Assertions Matter

Customers care about values.

They do not care that:

{
  "discount": {
    "type": "integer"
  }
}

is valid.

They care that the discount is correct.


Copy-Paste Template: Identity Assertion

expect(response.body.field)
  .toBe(expectedValue);

Or:

expect(response.body)
  .toEqual(expectedObject);


3. Side-Effect Assertions (The Ones That Prove the Work Happened)

This category gets overlooked surprisingly often.

An API can return:

200 OK

and still fail completely.

Consider:

POST /orders

The endpoint returns success.

But:

  • The database row wasn't created.
  • The message wasn't published.
  • The email wasn't sent.

The business process failed.


Side-Effect Assertions Validate

  • Database writes
  • Queue messages
  • Event publication
  • Emails
  • Audit logs
  • Third-party integrations

Example Database Assertion

expect(orderRepository.find(orderId))
  .not.toBeNull();


Example Queue Assertion

expect(queue.contains(orderCreatedEvent))
  .toBe(true);


Why Side Effects Matter

Many APIs exist solely to trigger something else.

The response itself is often the least important part.

For example:

POST /payments

Nobody cares about:

{
  "success": true
}

What matters is:

  • Was the payment captured?
  • Was the invoice generated?
  • Was the receipt sent?

Copy-Paste Template: Side-Effect Assertion

expect(databaseRecord)
  .toExist();

Or:

expect(publishedEvent)
  .toBeDefined();


The 9% That Didn't Fit

After categorizing our assertions, around 9% remained.

Examples included:

expect(response.body.items.length)
  .toBe(5);

expect(response.body.createdAt)
  .toBe('2026-07-01');

expect(response.body.version)
  .toBe('1.2.8');

Many of these were:

  • Brittle
  • Overly specific
  • Tied to implementation details

Why Most of Them Should Be Deleted

Ask yourself:

If this assertion failed tomorrow, would users actually notice?

If the answer is:

Probably not.

Delete it.

A surprising amount of maintenance comes from assertions that don't provide meaningful confidence.


Bad Assertions

expect(responseTime)
  .toBe(183);

expect(itemCount)
  .toBe(17);

expect(timestamp)
  .toEqual('2026-07-28T08:00:00Z');

These tend to break constantly.


Better Assertions

expect(responseTime)
  .toBeLessThan(500);

expect(itemCount)
  .toBeGreaterThan(0);

expect(timestamp)
  .toBeDefined();

These are more resilient.


The Assertion Pyramid I Recommend

Whenever I write a new API test, I ask three questions.


First

Does the response still match the contract?

→ Schema Assertion.


Second

Did the API return the correct business value?

→ Identity Assertion.


Third

Did the system actually perform the work?

→ Side-Effect Assertion.


Most useful tests contain at least one of these categories.

Many contain all three.

Example:

expect(response.body)
  .toMatchSchema(userSchema);

expect(response.body.name)
  .toBe('John');

expect(databaseUser)
  .toExist();

Three assertions.

Three different guarantees.

High confidence.

Low maintenance.


Final Thoughts

When we reduced our thousands of assertions down to categories, we realized something important:

Most API testing is simpler than we make it.

The majority of valuable assertions answer only three questions:

  1. Is the contract still valid?
  2. Is the business value correct?
  3. Did the side effect happen?

Everything else should justify its existence.

If an assertion doesn't increase confidence or protect against meaningful regressions, it may not belong in the suite.

That's why I now start every API test by deciding which of these three categories I'm actually trying to validate.

If you'd like to go deeper into building maintainable API suites, I highly recommend the REST API testing best practices guide:

https://totalshiftleft.ai/blog/rest-api-testing-best-practices

Because the best API tests aren't the ones with the most assertions.

They're the ones with the right assertions.