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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
博客园 - 叶小钗
雷峰网
雷峰网
量子位

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
API Testing in the AI Era: A Practical Workflow That Actu...
Bharati Devi · 2026-06-18 · via DEV Community

API Testing in the AI Era: A Practical Workflow That Actually Holds Up

API testing hasn't fundamentally changed in the last few years. What has changed is how much of the grunt work can be handed off — and how much new grunt work AI-generated code has created in the process. If you're integrating systems for a living, you've probably noticed both sides of that trade.

Here's a workflow that reflects where things actually stand right now, not the marketing version.

Start with the contract, not the code

The biggest shift isn't a tool, it's a sequencing change. Teams used to write the API, then write tests against it. The better order now is: write the OpenAPI/AsyncAPI spec first, validate it against design rules, and only then let anything — human or AI — generate code or tests from it.

This matters more in an AI-assisted workflow than it did before, because if you ask an AI coding assistant to "write tests for this endpoint" without a contract, it will infer the contract from whatever implementation it sees — including the bugs. You end up with tests that faithfully verify broken behavior. A spec-first approach gives both the code generator and the test generator the same source of truth, so at least everyone's wrong about the same thing in the same way, which is far easier to catch in review.

Tools like Spectral (for linting OpenAPI specs) and Stoplight are worth setting up before any AI test generation enters the picture.

Let AI generate the boring 80%, not the important 20%

This is the part that gets oversold. AI-assisted test generation — whether through GitHub Copilot, Postman's AI test generator, or a coding agent like Claude Code — is genuinely strong at producing the volume of boilerplate that nobody enjoys writing: status code checks, schema validation, basic CRUD round-trips, header presence, content-type assertions. Generating fifty of these by hand is tedious; generating them with AI assistance takes minutes and the coverage is usually fine.

Where it gets weaker is the test that actually matters: the one that encodes a business rule the AI has no way of knowing. "A refund can't exceed the original payment amount." "A referral payout can only fire once per successful hire, even if the webhook fires twice." These aren't things a model can infer from a schema. They come from domain knowledge, and if you don't write them yourself, nobody does — the AI will happily generate a test that checks the refund endpoint returns 200, and call it done.

Practical rule of thumb: use AI generation for the mechanical assertions, and treat every test it produces as a first draft you read, not a deliverable you ship. The failure mode isn't that AI-generated tests are wrong — it's that they're confidently incomplete, which is worse, because an incomplete test suite that passes feels safer than no test suite at all.

Idempotency and replay testing deserve more attention than they get

This is the one piece of advice from this list I'd put above all the others if you only have time for one. Webhooks get replayed. Networks retry. Payment processors and queue systems resend messages more often than most engineers expect, especially under load or during partial outages.

If your test suite doesn't include a case where the same request — payment confirmation, referral completion, order creation — is sent twice in a row and you assert the side effect happens exactly once, you have a gap that won't show up in a demo and will show up in production, usually attached to money. AI-generated test suites are particularly bad at catching this on their own, because the happy-path single-request case is the obvious one to generate, and the replay case requires someone to think "what if this fires twice" — which requires actually understanding the downstream consequence, not just the endpoint shape.

Concretely: for any endpoint that changes state tied to money, points, or one-time grants, write (or explicitly prompt for) a test that fires the request twice with the same idempotency key or webhook payload, and assert the database state is identical to firing it once.

Use AI to read failures faster, not to write fewer of them

Where AI assistance earns its place without much downside is failure triage. When a test suite has forty red tests after a schema change, manually diffing every failure against the previous contract is slow. Feeding the failure log and the diff between old and new spec into a model and asking "which of these failures are due to the contract change versus a regression" is a genuinely good use of the technology — it's a reading task, not a judgment task, and reading is what these models are reliably good at.

This is a different use case from generation, and it's worth treating it as a separate step in your workflow rather than expecting the same tool to both write your tests and diagnose them well.

Mocking and synthetic data generation is a legitimate time-saver

Generating realistic mock responses and synthetic test data — fake but structurally valid payloads, edge-case strings, boundary values for numeric fields — is a place where AI tools have a clear, low-risk advantage over hand-writing fixtures. Tools like Postman's AI assistant or simple prompted generation can produce a wider variety of edge cases (empty strings, unicode, boundary integers, malformed-but-parseable JSON) faster than most people bother to write by hand, and the risk if it gets one wrong is low — a bad fixture just produces an obviously bad test result, not a silently false-positive one.

What this doesn't replace

None of the above replaces actually understanding the system under test. The teams getting burned right now aren't the ones using AI test generation — they're the ones who let test coverage percentage become the success metric instead of "do we trust this suite to catch what matters." A test suite can hit 90% coverage and still miss the one idempotency bug that costs real money, and AI-generated coverage padding makes that gap easier to hide, not harder, because the dashboard looks reassuring.

The workflow that actually works treats AI as a force multiplier on the parts of testing that were always mechanical, while keeping a human firmly in charge of the parts that require knowing what the system is actually supposed to do.

Connect with me on LinkedIn or visit my startup journey at ReferNext