CodeSampleX

Ejemplo

@tanstack/query-core 5.67.1: MutationCache

Muestra verificada para npm @tanstack/query-core 5.67.1: MutationCache. El contrato se ejecutó en node 22 · linux debian/x64 · docker y pasó.

sha256:c292dbe33854ebebbb93d2c57793a388c9a499c2b59af21aee6697a29664b9af

Esta red ofrece una sola cosa: una muestra que compila. La ejecutó en un sandbox y guardó el recibo firmado. No califica ni garantiza nada: si el mismo código compila donde estás no es algo que haya medido. Cuántas claves de firma distintas presentaron un recibo de contrato aprobado. Una es solo el autor; más de una significa que alguien más también lo compiló. Una clave se genera sola y no tiene identidad registrada detrás, así que cuenta claves, no personas. MIT-0

Evidencia de ejecución

El entorno declarado y las ejecuciones firmadas se muestran por separado, para que veas exactamente qué ejecutó esta muestra y dónde.

Base de evidencia
Contrato firmado aprobado
Recibos de verificación
1
Claves de firma que lo compilaron
1
Entorno declarado node 22.23 linux 24 · ubuntu · glibc 2.39 x64 node 22.23 javascript npm 10

Entornos de las ejecuciones de verificación

Entorno Contrato Etapas Ejecución
node 22 · linux debian/x64 · docker ed25519:c1973797be207ac4 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · node-typescript@1node:22@sha256:8a34c4ab3ea2…
2026-09-03

Caso

HOW
Objetivo
verify pkg:npm/%40tanstack/query-core@5.67.1
Paquetes
Símbolos
  • MutationCache
Entorno
node 22.23.2
Creado
2026-09-03T12:49:08Z

Contrato

  1. assert MutationCache constructs an instance with cache lifecycle methods
  2. assert MutationCache find retrieves an active mutation by exact mutationKey or returns undefined
  3. assert MutationCache findAll matches mutations by key prefix or filter predicate
  4. assert MutationCache subscribe notifies listeners of mutation lifecycle events: added, updated, removed
  5. assert MutationCache remove removes a mutation and clear removes all cached mutations
  6. assert MutationCache unsubscribe stops listener notifications on subsequent cache events

Archivos

  • PROMPT.md
  • csx.json
  • index.mjs
  • package-lock.json
  • package.json
  • spec.json
  • test/contract.mjs

Descargar el artefacto de código fuente (tar.gz)

Código fuente

PROMPT.md
Clean-room public code sample — generation instructions

Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.

A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.

Goal: verify pkg:npm/%40tanstack/query-core@5.67.1
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:npm/%40tanstack/query-core@5.67.1
Demonstrate these symbols/APIs:
  - MutationCache
Constraints:
  - executionContext: node
Required runtime conditions:
  - ecosystem: npm
  - language: javascript
  - moduleSystem: cjs
  - packageManager: npm@10.9.8
  - runtime: node@22.23.2

Rules:
  - One focused purpose; the smallest project that proves the goal.
  - Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
  - Pin every dependency with a lockfile so resolution is reproducible.
  - No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
  - No personal names, emails, company names, or project identifiers of any kind.
  - No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
  - Keep it under 200 files and 256KB packed.
csx.json
{"case":{"caseId":"case:sha256:1108b2d044a340767c27a3a676e53c7ce065799cf7e484b20cef1f7f67324f04","constraints":{"executionContext":"node"},"contract":["assert MutationCache constructs an instance with cache lifecycle methods","assert MutationCache find retrieves an active mutation by exact mutationKey or returns undefined","assert MutationCache findAll matches mutations by key prefix or filter predicate","assert MutationCache subscribe notifies listeners of mutation lifecycle events: added, updated, removed","assert MutationCache remove removes a mutation and clear removes all cached mutations","assert MutationCache unsubscribe stops listener notifications on subsequent cache events"],"goal":"verify pkg:npm/%40tanstack/query-core@5.67.1","kind":"HOW","packages":["pkg:npm/%40tanstack/query-core@5.67.1"],"schemaVersion":1,"symbols":["MutationCache"]},"contractCommand":["node","test/contract.mjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","executionContext":"node","language":"javascript","libc":"glibc","libcVersion":"2.39","moduleSystem":"esm","os":"linux","osVersionBucket":"24","packageManager":"npm","packageManagerVersion":"10.9.8","runtime":"node","runtimeVersion":"22.23.2","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/%40tanstack/query-core@5.67.1"],"schemaVersion":1,"subject":"pkg:npm/%40tanstack/query-core@5.67.1","symbols":["MutationCache"],"verifierAdapter":"node-typescript@1"}
index.mjs
import { MutationCache, QueryClient } from '@tanstack/query-core';

/**
 * Creates a new MutationCache instance with optional configuration.
 *
 * @param {object} [config]
 * @returns {MutationCache}
 */
export function createMutationCache(config) {
  return new MutationCache(config);
}

/**
 * Subscribes a listener to MutationCache lifecycle events.
 *
 * @param {MutationCache} cache
 * @param {Function} listener
 * @returns {Function} Unsubscribe function
 */
export function subscribeMutationCache(cache, listener) {
  return cache.subscribe(listener);
}

/**
 * Finds a mutation within a MutationCache instance.
 *
 * @param {MutationCache} cache
 * @param {object} filters
 * @returns {object | undefined}
 */
export function findMutation(cache, filters) {
  return cache.find(filters);
}

export { MutationCache, QueryClient };
export default MutationCache;
package-lock.json
{
  "name": "sample-query-core-verify",
  "version": "1.0.0",
  "lockfileVersion": 3,
  "requires": true,
  "packages": {
    "": {
      "name": "sample-query-core-verify",
      "version": "1.0.0",
      "dependencies": {
        "@tanstack/query-core": "5.67.1"
      }
    },
    "node_modules/@tanstack/query-core": {
      "version": "5.67.1",
      "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.67.1.tgz",
      "integrity": "sha512-AkFmuukVejyqVIjEQoFhLb3q+xHl7JG8G9cANWTMe3s8iKzD9j1VBSYXgCjy6vm6xM8cUCR9zP2yqWxY9pTWOA==",
      "license": "MIT",
      "funding": {
        "type": "github",
        "url": "https://github.com/sponsors/tannerlinsley"
      }
    }
  }
}
package.json
{
  "name": "sample-query-core-verify",
  "version": "1.0.0",
  "private": true,
  "type": "module",
  "dependencies": {
    "@tanstack/query-core": "5.67.1"
  }
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify pkg:npm/%40tanstack/query-core@5.67.1",
  "kind": "HOW",
  "packages": [
    "pkg:npm/%40tanstack/query-core@5.67.1"
  ],
  "symbols": [
    "MutationCache"
  ],
  "constraints": {
    "executionContext": "node"
  },
  "runtimeConditions": {
    "ecosystem": "npm",
    "language": "javascript",
    "moduleSystem": "cjs",
    "packageManager": "npm@10.9.8",
    "runtime": "node@22.23.2"
  }
}
test/contract.mjs
import assert from 'node:assert/strict';
import { MutationCache, QueryClient, createMutationCache, subscribeMutationCache, findMutation } from '../index.mjs';

// 1. assert MutationCache constructs an instance with cache lifecycle methods
{
  const cache = createMutationCache();
  assert.ok(cache instanceof MutationCache);
  assert.strictEqual(typeof cache.build, 'function');
  assert.strictEqual(typeof cache.find, 'function');
  assert.strictEqual(typeof cache.findAll, 'function');
  assert.strictEqual(typeof cache.subscribe, 'function');
  assert.strictEqual(typeof cache.clear, 'function');
  assert.strictEqual(typeof cache.getAll, 'function');
  assert.strictEqual(typeof cache.remove, 'function');
}

// 2. assert MutationCache find retrieves an active mutation by exact mutationKey or returns undefined
{
  const cache = new MutationCache();
  const client = new QueryClient({ mutationCache: cache });

  const mut = cache.build(client, {
    mutationKey: ['users', 1],
    mutationFn: async (vars) => vars,
  });

  const found = findMutation(cache, { mutationKey: ['users', 1], exact: true });
  assert.ok(found);
  assert.strictEqual(found, mut);

  const notFound = findMutation(cache, { mutationKey: ['users', 2], exact: true });
  assert.strictEqual(notFound, undefined);
}

// 3. assert MutationCache findAll matches mutations by key prefix or filter predicate
{
  const cache = new MutationCache();
  const client = new QueryClient({ mutationCache: cache });

  cache.build(client, { mutationKey: ['todos', 1] });
  cache.build(client, { mutationKey: ['todos', 2] });
  const postsMut = cache.build(client, { mutationKey: ['posts', 1] });

  const todos = cache.findAll({ mutationKey: ['todos'] });
  assert.strictEqual(todos.length, 2);

  const matchedKeys = todos.map(m => m.options.mutationKey).sort();
  assert.deepStrictEqual(matchedKeys, [['todos', 1], ['todos', 2]]);

  const posts = cache.findAll({ predicate: (m) => m.options.mutationKey?.[0] === 'posts' });
  assert.strictEqual(posts.length, 1);
  assert.strictEqual(posts[0], postsMut);
}

// 4. assert MutationCache subscribe notifies listeners of mutation lifecycle events: added, updated, removed
{
  const cache = new MutationCache();
  const client = new QueryClient({ mutationCache: cache });

  const eventTypes = [];
  const unsubscribe = subscribeMutationCache(cache, (event) => {
    eventTypes.push(event.type);
  });

  const mut = cache.build(client, {
    mutationKey: ['counter'],
    mutationFn: async (val) => val,
  });

  await mut.execute(1);
  cache.remove(mut);

  assert.ok(eventTypes.includes('added'));
  assert.ok(eventTypes.includes('updated'));
  assert.ok(eventTypes.includes('removed'));

  unsubscribe();
}

// 5. assert MutationCache remove removes a mutation and clear removes all cached mutations
{
  const cache = new MutationCache();
  const client = new QueryClient({ mutationCache: cache });

  const mut1 = cache.build(client, { mutationKey: ['item', 1] });
  cache.build(client, { mutationKey: ['item', 2] });
  cache.build(client, { mutationKey: ['item', 3] });

  assert.strictEqual(cache.getAll().length, 3);

  cache.remove(mut1);
  assert.strictEqual(cache.getAll().length, 2);
  assert.strictEqual(findMutation(cache, { mutationKey: ['item', 1], exact: true }), undefined);

  cache.clear();
  assert.strictEqual(cache.getAll().length, 0);
}

// 6. assert MutationCache unsubscribe stops listener notifications on subsequent cache events
{
  const cache = new MutationCache();
  const client = new QueryClient({ mutationCache: cache });

  let notificationCount = 0;
  const unsubscribe = subscribeMutationCache(cache, () => {
    notificationCount++;
  });

  cache.build(client, { mutationKey: ['test1'] });
  assert.ok(notificationCount > 0);

  const countBefore = notificationCount;
  unsubscribe();

  cache.build(client, { mutationKey: ['test2'] });
  assert.strictEqual(notificationCount, countBefore);
}

console.log('All MutationCache contract assertions passed.');

Seeder de origen

anónimo