CtrlK
BlogDocsLog inGet started
Tessl Logo

testland/experiment-sdk-testing

Umbrella for experimentation-SDK test harnesses: the shared offline-datafile / hermetic-init pattern (commit a point-in-time flag/experiment config fixture, initialize the SDK with no network, pin arms per test, assert assignment integrity), with per-vendor references for Statsig (localMode + overrideGate), Optimizely (datafile + forced decisions), Split.io / Harness FME (localhost mode + features map or YAML fixture), Amplitude Experiment (local evaluation + bootstrap), and VWO (settings file + deterministic bucketing). Use when writing tests for application code instrumented with any of these five experimentation SDKs; for experiment DESIGN gates use ab-test-validity-checklist, and to read results use experiment-results-interpreter.

76

Quality

96%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Overview
Quality
Evals
Security
Files

SKILL.md

name:
experiment-sdk-testing
description:
Umbrella for experimentation-SDK test harnesses: the shared offline-datafile / hermetic-init pattern (commit a point-in-time flag/experiment config fixture, initialize the SDK with no network, pin arms per test, assert assignment integrity), with per-vendor references for Statsig (localMode + overrideGate), Optimizely (datafile + forced decisions), Split.io / Harness FME (localhost mode + features map or YAML fixture), Amplitude Experiment (local evaluation + bootstrap), and VWO (settings file + deterministic bucketing). Use when writing tests for application code instrumented with any of these five experimentation SDKs; for experiment DESIGN gates use ab-test-validity-checklist, and to read results use experiment-results-interpreter.

experiment-sdk-testing

Overview

Every major experimentation SDK ships the same hermetic-test mechanism under a different name: a point-in-time config fixture (datafile, settings file, flag payload, features map) that the SDK evaluates locally, so tests make zero network calls, pollute no production analytics, and stay deterministic. The vendor-specific mechanics differ only in how the fixture is loaded and how an arm is pinned.

Routing table

SDKOffline mechanismArm pinningReference
StatsiglocalMode: trueoverrideGate / overrideConfigreferences/statsig.md
OptimizelyJSON datafile fixtureset_forced_decisionreferences/optimizely.md (+ optimizely-recipes.md)
Split.io / Harness FMEauthorizationKey: 'localhost' + features map / YAMLPer-key fixture entry (no override API)references/split-io.md (+ split-io-example.md)
Amplitude ExperimentLocalEvaluationClient + bootstrapFixture edit or evaluateV2 mockreferences/amplitude.md
VWOSettings file + is_development_modeDeterministic bucketing on user IDreferences/vwo.md

When to use

  • Tests for code that reads a gate / experiment / variant from any of the five SDKs above.
  • Assignment-integrity tests per ab-test-validity-checklist Step 3.
  • CI pipelines that must run without vendor network access.

The shared hermetic-init pattern

Regardless of vendor, the suite has the same five steps:

  1. Export and commit the config fixture - the datafile / settings / flag payload the SDK would fetch, checked into tests/fixtures/ and refreshed deliberately (drift between fixture and prod config is invisible otherwise).
  2. Initialize the SDK offline - the vendor's no-network switch (localMode, datafile string, 'localhost' key, bootstrap, is_development_mode).
  3. Pin the arm where the test needs one - override API, forced decision, per-key fixture entry, or a deterministically-bucketed user ID.
  4. Assert on values and keys, never internal IDs - variation keys and returned values survive environment changes; internal config IDs don't.
  5. Tear down - shutdown / destroy the client so event-flush timers and handles don't leak across test files.

Plus two integrity tests every suite should carry:

  • Determinism - the same user ID gets the same arm on repeated evaluation.
  • Distribution - across many user IDs, more than one arm actually occurs (and, where the split is known, roughly matches it).

Worked example (Optimizely datafile)

The team ships a new_checkout_flow flag with a treatment_a variation and needs a deterministic test that a premium-plan user is routed into the treatment:

import json
from optimizely import optimizely

# Step 1-2: committed fixture, offline init - no SDK key, no network
with open("tests/fixtures/optimizely-datafile.json") as f:
    client = optimizely.Optimizely(f.read())

def test_premium_user_in_treatment():
    # Step 3: context carries the attributes targeting needs
    user = client.create_user_context("user-1", {"plan": "premium"})
    decision = user.decide("new_checkout_flow")
    # Step 4: assert on enabled + variation_key, not IDs
    assert decision.enabled is True
    assert decision.variation_key == "treatment_a"

def test_assignment_deterministic():
    user = client.create_user_context("user-1")
    d1 = user.decide("new_checkout_flow")
    d2 = user.decide("new_checkout_flow")
    assert d1.variation_key == d2.variation_key

The fixture drives the whole decision; the same shape translates to each vendor via its reference above.

Anti-patterns (all vendors)

Anti-patternWhy it failsFix
Live API key in testsProduction analytics polluted; rate limits; flakesThe vendor's offline switch
Fixture not version-controlledTests flake when prod config changesCommit; refresh deliberately
Overrides / forced decisions leak across testsCross-test pollutionPer-test context + cleanup
Asserting on internal config / variation IDsIDs change per environmentAssert keys and values
Skipping client shutdown / destroyEvent-flush timers and handles leakTeardown in afterAll
Trusting one user ID to cover both armsMay bucket into one arm onlyDistribution test across many IDs

Limitations

  • Fixtures are point-in-time. Drift against the vendor UI is invisible until refreshed.
  • Offline modes don't validate the vendor's server-side analysis. Platform statistics are the vendor's job; these tests cover your code's SDK interaction only.
  • Per-vendor gaps (Statsig localMode still pings on some init paths; Split.io has no override API; Amplitude local evaluation lacks some flag types; VWO has no forced-decision API) are documented in each reference.

References

SKILL.md

tile.json