CodeSampleX

샘플

robots-parser 3.0.1

검증된 샘플 — npm robots-parser 3.0.1. node 22 · linux debian/x64 · docker에서 contract를 실행해 통과했습니다: robotsParser correctly identifies disallowed paths and returns…

sha256:ab525c2038a168ecf7be0bcbea1480fa13d0c9c0c50961e1f3a350b7227307f8

이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다. 통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다. MIT-0

실행 증거

선언된 환경과 서명된 실행을 분리해 두었습니다. 이 샘플이 무엇을 어디서 실행했는지 그대로 볼 수 있습니다.

증거 기준
서명된 컨트랙트 통과
검증 영수증
1
빌드한 서명 키
1
선언된 환경 linux 24 · ubuntu · glibc 2.39 x64 npm

검증 실행 환경

환경 컨트랙트 단계 실행일
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-13

케이스

HOW
목표
verify pkg:npm/robots-parser@3.0.1
패키지
생성일
2026-09-13T18:34:50Z

컨트랙트

  1. robotsParser correctly identifies disallowed paths and returns false for isAllowed
  2. robotsParser allows paths matching specific Allow directives even within disallowed prefixes
  3. robotsParser prioritizes user-agent specific rules over wildcard user-agent rules
  4. robotsParser retrieves crawl delay for specific user agents
  5. robotsParser extracts sitemap URLs and preferred host directives
  6. robotsParser returns 1-based matching line number or -1 when no directive matches
  7. robotsParser returns undefined from isAllowed when the URL origin does not match the robots.txt base URL

파일

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

소스 아티팩트 내려받기 (tar.gz)

소스

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/robots-parser@3.0.1
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:npm/robots-parser@3.0.1

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:eb060b37af36d34034772dbbb624813d615b1e442e9ea1037f0255bc989c8266","contract":["robotsParser correctly identifies disallowed paths and returns false for isAllowed","robotsParser allows paths matching specific Allow directives even within disallowed prefixes","robotsParser prioritizes user-agent specific rules over wildcard user-agent rules","robotsParser retrieves crawl delay for specific user agents","robotsParser extracts sitemap URLs and preferred host directives","robotsParser returns 1-based matching line number or -1 when no directive matches","robotsParser returns undefined from isAllowed when the URL origin does not match the robots.txt base URL"],"goal":"verify pkg:npm/robots-parser@3.0.1","kind":"HOW","packages":["pkg:npm/robots-parser@3.0.1"],"schemaVersion":1},"contractCommand":["node","test/contract.mjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"npm","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/robots-parser@3.0.1"],"schemaVersion":1,"subject":"pkg:npm/robots-parser@3.0.1","verifierAdapter":"node-typescript@1"}
index.js
import robotsParser from 'robots-parser';

/**
 * Creates a robots parser instance for the specified base URL and robots.txt contents.
 *
 * @param {string} url - The URL where the robots.txt is hosted.
 * @param {string} contents - The robots.txt contents.
 * @returns {Object} Robots parser instance.
 */
export function createRobotsParser(url, contents) {
  return robotsParser(url, contents);
}

export default robotsParser;
package-lock.json
{
  "name": "sample-robots-parser",
  "version": "1.0.0",
  "lockfileVersion": 3,
  "requires": true,
  "packages": {
    "": {
      "name": "sample-robots-parser",
      "version": "1.0.0",
      "dependencies": {
        "robots-parser": "3.0.1"
      }
    },
    "node_modules/robots-parser": {
      "version": "3.0.1",
      "resolved": "https://registry.npmjs.org/robots-parser/-/robots-parser-3.0.1.tgz",
      "integrity": "sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ==",
      "license": "MIT",
      "engines": {
        "node": ">=10.0.0"
      }
    }
  }
}
package.json
{
  "name": "sample-robots-parser",
  "version": "1.0.0",
  "type": "module",
  "main": "index.mjs",
  "scripts": {
    "test": "node test/contract.mjs"
  },
  "dependencies": {
    "robots-parser": "3.0.1"
  }
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify pkg:npm/robots-parser@3.0.1",
  "kind": "HOW",
  "packages": [
    "pkg:npm/robots-parser@3.0.1"
  ]
}
test/contract.mjs
import assert from 'node:assert';
import robotsParser, { createRobotsParser } from '../index.js';

const robotsTxt = [
  'User-agent: custombot',
  'Disallow: /restricted/',
  'Allow: /restricted/public/',
  'Crawl-delay: 2.5',
  '',
  'User-agent: *',
  'Disallow: /admin/',
  'Crawl-delay: 10',
  'Sitemap: https://example.com/sitemap.xml',
  'Host: example.com'
].join('\n');

const baseUrl = 'https://example.com/robots.txt';
const parser = createRobotsParser(baseUrl, robotsTxt);

// 1. robotsParser correctly identifies disallowed paths and returns false for isAllowed
{
  const allowed = parser.isAllowed('https://example.com/admin/settings', 'otherbot');
  const disallowed = parser.isDisallowed('https://example.com/admin/settings', 'otherbot');
  assert.strictEqual(allowed, false);
  assert.strictEqual(disallowed, true);

  const allowedRoot = parser.isAllowed('https://example.com/page', 'otherbot');
  assert.strictEqual(allowedRoot, true);
}

// 2. robotsParser allows paths matching specific Allow directives even within disallowed prefixes
{
  const disallowedSub = parser.isAllowed('https://example.com/restricted/secret', 'custombot');
  assert.strictEqual(disallowedSub, false);

  const allowedSub = parser.isAllowed('https://example.com/restricted/public/file.html', 'custombot');
  assert.strictEqual(allowedSub, true);
}

// 3. robotsParser prioritizes user-agent specific rules over wildcard user-agent rules
{
  // custombot has specific rules, so /admin/ is not disallowed for custombot
  const custombotAdmin = parser.isAllowed('https://example.com/admin/settings', 'custombot');
  assert.strictEqual(custombotAdmin, true);

  // generic bot falls back to * section where /admin/ is disallowed
  const genericAdmin = parser.isAllowed('https://example.com/admin/settings', 'randombot');
  assert.strictEqual(genericAdmin, false);
}

// 4. robotsParser retrieves crawl delay for specific user agents
{
  assert.strictEqual(parser.getCrawlDelay('custombot'), 2.5);
  assert.strictEqual(parser.getCrawlDelay('otherbot'), 10);
  assert.strictEqual(parser.getCrawlDelay(), 10);
}

// 5. robotsParser extracts sitemap URLs and preferred host directives
{
  const sitemaps = parser.getSitemaps();
  assert.deepStrictEqual(sitemaps, ['https://example.com/sitemap.xml']);

  const host = parser.getPreferredHost();
  assert.strictEqual(host, 'example.com');
}

// 6. robotsParser returns 1-based matching line number or -1 when no directive matches
{
  // Line 2 is 'Disallow: /restricted/'
  const line2 = parser.getMatchingLineNumber('https://example.com/restricted/secret', 'custombot');
  assert.strictEqual(line2, 2);

  // Line 3 is 'Allow: /restricted/public/'
  const line3 = parser.getMatchingLineNumber('https://example.com/restricted/public/file.html', 'custombot');
  assert.strictEqual(line3, 3);

  // Unmatched path returns -1
  const unmatched = parser.getMatchingLineNumber('https://example.com/other/path', 'custombot');
  assert.strictEqual(unmatched, -1);
}

// 7. robotsParser returns undefined from isAllowed when the URL origin does not match the robots.txt base URL
{
  const diffOrigin = parser.isAllowed('https://other.example.com/admin/settings');
  assert.strictEqual(diffOrigin, undefined);

  const diffProto = parser.isAllowed('http://example.com/admin/settings');
  assert.strictEqual(diffProto, undefined);
}

console.log('All robots-parser contract assertions passed.');

오리진 시더

익명