The Problem We Kept Running Into
Every developer building an EV charging station implementation eventually hits the same wall: how do you actually test your OCPP 1.6 compliance before shipping to production?
The official answer is the OCA's OCTT (OCPP Compliance Testing Tool). It works, but it's designed for a world where testing is a milestone, not a daily habit. You fill out a form, wait for approval, schedule a session, and run through a fixed test suite. By the time results come back, you've already moved on to three other things.
We were building charging station firmware and running into this constantly. The feedback loop was too long.
What We Wanted
A tool that worked the way developers expect tools to work:
- Install it. Run it. Get results.
- No forms, no waiting, no SaaS login.
- Works offline, on your local machine, against your dev environment.
- Scriptable enough to drop into CI.
That's OCPP Tester.
How It Works
OCPP Tester spins up a mock Central System that speaks OCPP 1.6 over WebSocket. Your charger connects to it the same way it would connect to a real CSMS. The tool then drives a sequence of test scenarios — BootNotification, Authorize, StartTransaction, StopTransaction, heartbeats, status notifications — and validates that your charger's responses conform to the spec.
Each test scenario is deterministic. You get a pass/fail result for every message exchange, with the exact JSON payloads logged so you can see exactly what went wrong.
What It Isn't
OCPP Tester is not a replacement for formal OCA certification if you need that for a procurement contract. It's a development tool. Think of it as the unit tests you run before the integration tests — a fast inner loop that catches obvious protocol mistakes before they become expensive support tickets.
The Business Model
We sell one-time licenses. No subscriptions, no usage limits, no phoning home. You buy it, you own it. If we publish updates, you get them.
We're still in early access. If you're building OCPP firmware or a charging station product and want to try it, reach out.