npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

cloudflare-test-utils

v1.0.2

Published

test utilities for Cloudflare workers

Readme

Cloudflare test utilities

The Cloudflare test utilities module contains helper classes for unit testing Cloudflare workers with vitest. You can mock your Cloudflare env bindings for AnalyticsEngineDatasets, D1Databases, etc.

Cloudflare test utilities are compatible with cloudflare-utils. The mocked instances implement their respective native Cloudflare interfaces and will therefore pass validation.

Analytics Engine datasets

The TestAnalyticsEngineDataset class allows you to expect data points to be have been written.

import {
  EXPECT_ANY_NUMBER,
  TEST_EXECUTION_CONTEXT,
  TestAnalyticsEngineDataset,
} from 'cloudflare-test-utils';
import { describe, it, vi } from 'vitest';
import fetch from './fetch.js';

describe('fetch', (): void => {
  it('should emit a page view metric', async (): Promise<void> => {
    const MY_DATASET = new TestAnalyticsEngineDataset();

    await fetch(
      new Request('https://localhost/test/', {
        headers: new Headers({
          'cf-connecting-ip': '192.168.0.1',
          cookie: 'session-id=0123456789abcdef',
        }),
      }),
      {
        MY_DATASET,
      },
      TEST_EXECUTION_CONTEXT,
    );

    MY_DATASET.expectToHaveWrittenDataPoint({
      blobs: ['/test/', '0123456789abcdef'],
      doubles: [EXPECT_ANY_NUMBER, 3232235521],
      indexes: ['pageView'],
    });
  });
});

D1 databases

The TestD1Database class allows you to mock query responses and errors.

import { StatusCode } from 'cloudflare-utils';
import { TEST_EXECUTION_CONTEXT, TestD1Database } from 'cloudflare-test-utils';
import { describe, it, vi } from 'vitest';
import fetch from './fetch.js';
import { SELECT_USER_BY_SESSION_ID } from './queries.js';

describe('fetch', (): void => {
  // Example: mocking a query response
  it('should query the current user', async (): Promise<void> => {
    const MY_DATABASE = new TestD1Database({
      [SELECT_USER_BY_SESSION_ID]: {
        results: [{
          id: 1234,
          name: 'Test User',
        }],
      },
    });

    const response: Response = await fetch(
      new Request('https://localhost/whoami/', {
        headers: new Headers({
          cookie: 'session-id=0123456789abcdef',
        }),
      }),
      {
        MY_DATABASE,
      },
      TEST_EXECUTION_CONTEXT,
    );

    MY_DATABASE.expectToHaveQueried(
      SELECT_USER_BY_SESSION_ID,
      ['0123456789abcdef'],
    );

    expect(await response.json()).toEqual({
      id: 1234,
      name: 'Test User',
    });
  });

  // Example: mocking a query error
  it('should respond with a 404 when the query fails', async (): Promise<void> => {
    const MY_DATABASE = new TestD1Database({
      [SELECT_USER_BY_SESSION_ID]: {
        error: new Error('test message'),
      },
    });

    const response: Response = await fetch(
      new Request('https://localhost/test/', {
        headers: new Headers({
          cookie: 'session-id=0123456789abcdef',
        }),
      }),
      {
        MY_DATABASE,
      },
      TEST_EXECUTION_CONTEXT,
    );

    expect(response.status).toBe(StatusCode.NotFound);
  });
});

KV namespaces

The TestKVNamespace class allows you to mock your key-value pairs.

import { TEST_EXECUTION_CONTEXT, TestKVNamespace } from 'cloudflare-test-utils';
import { describe, it, vi } from 'vitest';
import fetch from './fetch.js';

describe('fetch', (): void => {
  it('should read from the KV namespace', async (): Promise<void> => {
    const MY_NAMESPACE = new TestKVNamespace({
      TEST_KEY: 'test value',
    });

    const response: Response = await fetch(
      new Request('https://localhost/get?key=TEST_KEY'),
      {
        MY_NAMESPACE,
      },
      TEST_EXECUTION_CONTEXT,
    );

    expect(await response.text()).toBe('test value');
  });

  it('should write to the KV namespace', async (): Promise<void> => {
    const MY_NAMESPACE = new TestKVNamespace();

    await fetch(
      new Request('https://localhost/put?key=TEST_KEY&value=test%20value'),
      {
        MY_NAMESPACE,
      },
      TEST_EXECUTION_CONTEXT,
    );

    MY_NAMESPACE.expectToHavePut('TEST_KEY', 'test value');
  });
});

R2 buckets

The TestR2Bucket class allows you to mock R2 bucket methods.

import { TEST_EXECUTION_CONTEXT, TestR2Bucket } from 'cloudflare-test-utils';
import { describe, it, vi } from 'vitest';
import fetch from './fetch.js';

describe('fetch', (): void => {
  it('should store', async (): Promise<void> => {
    const MY_BUCKET = new TestR2Bucket();

    await fetch(
      new Request('https://localhost/test/'),
      {
        MY_BUCKET,
      },
      TEST_EXECUTION_CONTEXT,
    );
  });
});