Ejemplo
tmp 0.2.7: file
Muestra verificada para npm tmp 0.2.7: file. El contrato se ejecutó en node 22 · linux debian/x64 · docker y pasó: assert tmp.file is a function exported by…
sha256:92b767250ed01fcd62982062e58856f8485fc31607732c05891b8aca29fcec60
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-01 |
Caso
HOW- Objetivo
- verify tmp.file in pkg:npm/tmp@0.2.7
- Paquetes
- Símbolos
-
- tmp.file
- Entorno
- node 22.23.2
- Creado
- 2026-09-01T20:42:05Z
Contrato
- assert tmp.file is a function exported by tmp
- assert tmp.file creates a temporary file on disk with a valid file descriptor
- assert tmp.file respects prefix and postfix options
- assert tmp.file respects discardDescriptor option by returning undefined file descriptor
- assert tmp.file respects mode option when creating the file
- assert tmp.file cleanup callback is idempotent and safely ignored on subsequent calls
Archivos
- PROMPT.md
- csx.json
- index.js
- package-lock.json
- package.json
- spec.json
- test/contract.mjs
Código fuente
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 tmp.file in pkg:npm/tmp@0.2.7
Kind: HOW
Use EXACTLY these public packages and versions:
- pkg:npm/tmp@0.2.7
Demonstrate these symbols/APIs:
- tmp.file
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.
{"case":{"caseId":"case:sha256:6b7f036b52ba99d5833c80df9058fb2aadbcbace9ac28e17ce0364e21e43991f","contract":["assert tmp.file is a function exported by tmp","assert tmp.file creates a temporary file on disk with a valid file descriptor","assert tmp.file respects prefix and postfix options","assert tmp.file respects discardDescriptor option by returning undefined file descriptor","assert tmp.file respects mode option when creating the file","assert tmp.file cleanup callback is idempotent and safely ignored on subsequent calls"],"goal":"verify tmp.file in pkg:npm/tmp@0.2.7","kind":"HOW","packages":["pkg:npm/tmp@0.2.7"],"schemaVersion":1,"symbols":["tmp.file"]},"contractCommand":["node","test/contract.mjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","executionContext":"node","language":"javascript","libc":"glibc","libcVersion":"2.39","moduleSystem":"cjs","os":"linux","osVersionBucket":"24","packageManager":"npm","packageManagerVersion":"10.9.8","runtime":"node","runtimeVersion":"22.23.2","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/tmp@0.2.7"],"schemaVersion":1,"subject":"pkg:npm/tmp@0.2.7","symbols":["tmp.file"],"verifierAdapter":"node-typescript@1"}
'use strict';
const tmp = require('tmp');
/**
* Creates a temporary file asynchronously with default or custom options.
*
* @param {Object|Function} [options] - Options or callback.
* @param {Function} [callback] - Callback function (err, path, fd, cleanupCallback).
*/
function createTempFile(options, callback) {
if (typeof options === 'function') {
return tmp.file(options);
}
return tmp.file(options, callback);
}
/**
* Promise-based helper to create a temporary file using tmp.file.
*
* @param {Object} [options] - Options for tmp.file.
* @returns {Promise<{path: string, fd: number|undefined, cleanup: Function, cleanupAsync: Function}>}
*/
function createTempFileAsync(options = {}) {
return new Promise((resolve, reject) => {
tmp.file(options, (err, path, fd, cleanupCallback) => {
if (err) {
return reject(err);
}
const cleanupAsync = () =>
new Promise((res, rej) => {
cleanupCallback((cleanErr) => {
if (cleanErr) rej(cleanErr);
else res();
});
});
resolve({ path, fd, cleanup: cleanupCallback, cleanupAsync });
});
});
}
module.exports = {
tmp,
file: tmp.file,
createTempFile,
createTempFileAsync,
};
{
"name": "sample-tmp-file",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "sample-tmp-file",
"version": "1.0.0",
"license": "MIT-0",
"dependencies": {
"tmp": "0.2.7"
}
},
"node_modules/tmp": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.7.tgz",
"integrity": "sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==",
"license": "MIT",
"engines": {
"node": ">=14.14"
}
}
}
}
{
"name": "sample-tmp-file",
"version": "1.0.0",
"description": "Clean-room sample verifying tmp.file in tmp",
"main": "index.js",
"license": "MIT-0",
"dependencies": {
"tmp": "0.2.7"
}
}
{
"schemaVersion": 1,
"goal": "verify tmp.file in pkg:npm/tmp@0.2.7",
"kind": "HOW",
"packages": [
"pkg:npm/tmp@0.2.7"
],
"symbols": [
"tmp.file"
]
}
import assert from 'node:assert';
import fs from 'node:fs';
import path from 'node:path';
import tmpPkg from 'tmp';
import samplePkg from '../index.js';
const tmp = tmpPkg.default || tmpPkg;
const {
file,
createTempFile,
createTempFileAsync,
} = samplePkg;
// 1. assert tmp.file is a function exported by tmp
assert.strictEqual(typeof tmp.file, 'function', 'tmp.file must be a function');
assert.strictEqual(typeof file, 'function', 'file exported by index.js must be a function');
assert.strictEqual(typeof createTempFile, 'function', 'createTempFile must be a function');
assert.strictEqual(typeof createTempFileAsync, 'function', 'createTempFileAsync must be a function');
assert.strictEqual(file, tmp.file, 're-exported file must match tmp.file');
// 2. assert tmp.file creates a temporary file on disk with a valid file descriptor
await new Promise((resolve, reject) => {
tmp.file((err, filePath, fd, cleanupCallback) => {
if (err) return reject(err);
try {
assert.strictEqual(typeof filePath, 'string', 'filePath must be a string');
assert.strictEqual(typeof fd, 'number', 'fd must be a valid numeric file descriptor');
assert.ok(fs.existsSync(filePath), 'temporary file must exist on disk');
// Write data to the file descriptor to prove it is open and writable
fs.writeSync(fd, 'tmp-file-contract-test\n');
const content = fs.readFileSync(filePath, 'utf8');
assert.strictEqual(content, 'tmp-file-contract-test\n', 'written content must match');
// Asynchronously cleanup
cleanupCallback((cleanErr) => {
if (cleanErr) return reject(cleanErr);
try {
assert.strictEqual(fs.existsSync(filePath), false, 'temporary file must be removed after cleanup');
resolve();
} catch (assertErr) {
reject(assertErr);
}
});
} catch (e) {
cleanupCallback(() => reject(e));
}
});
});
// 3. assert tmp.file respects prefix and postfix options
await new Promise((resolve, reject) => {
tmp.file({ prefix: 'contract-prefix-', postfix: '.contract-suffix' }, (err, filePath, fd, cleanupCallback) => {
if (err) return reject(err);
try {
const baseName = path.basename(filePath);
assert.ok(baseName.startsWith('contract-prefix-'), `File basename should start with prefix: ${baseName}`);
assert.ok(baseName.endsWith('.contract-suffix'), `File basename should end with postfix: ${baseName}`);
assert.ok(fs.existsSync(filePath), 'temporary file with custom prefix/postfix must exist');
cleanupCallback((cleanErr) => {
if (cleanErr) return reject(cleanErr);
try {
assert.strictEqual(fs.existsSync(filePath), false, 'file must be deleted after cleanup');
resolve();
} catch (assertErr) {
reject(assertErr);
}
});
} catch (e) {
cleanupCallback(() => reject(e));
}
});
});
// 4. assert tmp.file respects discardDescriptor option by returning undefined file descriptor
await new Promise((resolve, reject) => {
tmp.file({ discardDescriptor: true }, (err, filePath, fd, cleanupCallback) => {
if (err) return reject(err);
try {
assert.strictEqual(fd, undefined, 'fd should be undefined when discardDescriptor is true');
assert.ok(fs.existsSync(filePath), 'file should exist even if descriptor is discarded');
cleanupCallback((cleanErr) => {
if (cleanErr) return reject(cleanErr);
try {
assert.strictEqual(fs.existsSync(filePath), false, 'file must be removed after cleanup');
resolve();
} catch (assertErr) {
reject(assertErr);
}
});
} catch (e) {
cleanupCallback(() => reject(e));
}
});
});
// 5. assert tmp.file respects mode option when creating the file
await new Promise((resolve, reject) => {
tmp.file({ mode: 0o640, discardDescriptor: true }, (err, filePath, fd, cleanupCallback) => {
if (err) return reject(err);
try {
const stat = fs.statSync(filePath);
assert.strictEqual(stat.mode & 0o777, 0o640, 'file mode should match requested mode 0o640');
cleanupCallback((cleanErr) => {
if (cleanErr) return reject(cleanErr);
try {
assert.strictEqual(fs.existsSync(filePath), false, 'file must be removed after cleanup');
resolve();
} catch (assertErr) {
reject(assertErr);
}
});
} catch (e) {
cleanupCallback(() => reject(e));
}
});
});
// 6. assert tmp.file cleanup callback is idempotent and safely ignored on subsequent calls
await new Promise((resolve, reject) => {
createTempFile((err, filePath, fd, cleanupCallback) => {
if (err) return reject(err);
try {
assert.ok(fs.existsSync(filePath), 'temporary file must exist');
cleanupCallback((cleanErr1) => {
if (cleanErr1) return reject(cleanErr1);
try {
assert.strictEqual(fs.existsSync(filePath), false, 'temporary file must be removed by first cleanup');
// Second invocation is a no-op and does not throw
assert.doesNotThrow(() => {
cleanupCallback();
}, 'subsequent cleanupCallback invocation must not throw');
resolve();
} catch (assertErr) {
reject(assertErr);
}
});
} catch (e) {
cleanupCallback(() => reject(e));
}
});
});
// 7. Verify async Promise helper
const asyncResult = await createTempFileAsync({ prefix: 'promise-test-' });
assert.ok(fs.existsSync(asyncResult.path), 'async created file must exist');
await asyncResult.cleanupAsync();
assert.strictEqual(fs.existsSync(asyncResult.path), false, 'async created file must be removed after cleanup');
console.log('All tmp.file contract assertions passed.');
Seeder de origen
anónimo