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

peggy-test

v0.0.1

Published

Unit test peggy grammars

Readme

Unit test peggy grammars

You've written a complex Peggy grammar, and would like to test individual rules in it to make sure that they work correctly. You'd probably like to be able to see the code coverage of those tests as well.

Installation

Note: this won't work until the package is published for the first time:

npm install peggy-test

Further note: I'm working on this in a personal repo, but if it's interesting to the Peggy community, I'll move it to the Peggy organization on GitHub. We'll make that call before we publish the first time, so we don't have to change owners.

Basic Approach

A test file is a very constrained subset of Markdown that contains sample inputs and expected matching outputs for your grammar. You can specify the start rule for any given input. For example, imagine this grammar, saved in a file named foo.peggy:

top = foo / bar
foo = "a" / "b"
bar = n:$[0-9]+ { return BigInt(n); }

You might write a foo.test.md file that looks like:

---
source: foo.peggy
---

# Positive tests

This tests the default rule, which is the first rule (`top`) if not specified
in the metadata above.

Input:
```
a
```

Output:
```js
'a'
```

This test has tracing turned on.

Input to rule `bar`: (trace)
```
120
```

Output:
```js
120n
```

When you run this with peggy-test foo.test.md, you will see TAP output. c8 can be used to generate coverage metrics of the grammar with c8 peggy-test foo.test.md, which takes advantage of the source-code mapping that Peggy produces.

Creating empty tests

Test stubs can be created from your grammar:

peggy-test -g <grammar file> <test file>

If the test file does not exist, it creates one with a skipped test for each rule in your grammar. If you want to overwrite an existing test file, use the --force flag.

Updating test output

It is tedious to calculate the expected output for each test input. Instead, you add output blocks to all of the tests missing them in a test file with the current output of the grammar:

peggy-test --update <test file>

If you want to update all of the tests, use --force:

peggy-test --force --update <test file>

Command Line

Usage: peggy-test [options] <testFile>

Arguments:
  testFile                        The file to test

Options:
  -f, --force                     With --update, updates all tests, not just
                                  ones without output already specified.  With
                                  --generate, overwrites a file if it already
                                  exists.  With neither, un-skips all skipped
                                  tests.
  -g, --generate <sourceGrammar>  Generate a new test file from a grammar
  -q, --quiet                     Output as liitle info as possible
  -u, --update                    Update the test file with the current test
                                  outputs
  -h, --help                      display help for command

Test file format

Most markdown is not yet supported. More may be added over time.

Meta-data

The test file MUST start with a YAML Metadata block, which may contain any fields you like. However, these fields have special meaning:

| Field | Meaning | Default | | ----- | -------- | ------- | | source | Grammar file name, relative to the test file location. | [required] | | outDir | The directory where a compiled version of the grammar will be temporarily stored. | The directory where the grammar is found. | | defaultRule | If a rule name is not specified in a test, this rule is used. | The first rule in the grammar. | | updated | ISO8601 date string of the last time the test file was updated mechanically. | [None] |

Example:

---
source: ../src/test_md.peggy
outDir: ../lib
defaultRule: start
updated: 2022-06-21T16:59:46.221Z
---

Sections

Following the metadata, there may be one or more sections. Each section consists of a description (a line starting with #), followed by one or more tests. Each test may specify a start rule, zero or more tags, an input, and may have an expected output. You may have paragraphs of markdown text before or after tests to describe them.

Tests

Tests MAY include a rule name, which will be used as the start rule for processing the input. These tests start with Input to rule `<rule name>`: like this:

Input to rule `field`:
```
Something-Here: There

```

Output:
```js
[
  'Something-Here',
  'There'
]
```

Tests may also use the default rule:

Input:
```
This input text uses the default rule
```

A test MUST be followed by an input code block, and MAY be followed by an output code block.

Output

Output sections are not required. A non-skipped test without an output section will be marked as "TODO" in the TAP output. When present, the output code block is preceded with a line containing "Output:".

Output:
```js
{
  skip: true,
  trace: true
}
```

Code blocks

Code blocks are used for input and output. They MUST be surrounded by three backticks (```) or three tildes ~~~, which have to match. If there are no lines between the markers, the block will be interpreted as null. The newline at the end of the last line will be discarded, so if you want to test something that contains a newline, you must leave an extra blank line. For example, corresponds to the empty string ("") :

~~~

~~~

And this will use a single "\n" as input:

~~~


~~~

And this will use null as the the input:

~~~
~~~

The initial set of backticks or tildes can be followed by a lanugage identifier. If you are processing a language that your markdown system knows about, you might want to specify that language on an input code block, but this is unlikely to be satisfying for the small snippets of subrules that you will be testing. Specifying js as the language of the output block is most usual for non-errors, since it will be formatting the output of util.inspect.

Tags

Tags modify the processing of a test. They are words in parentheses after the colon on the input line. Tags may not be duplicated on a given test. They only apply to a single test at a time. For example:

Input: (skip)

Here are the currently supported tags:

| Name | Meaning | |----- | ------- | | (only) | Only run this tests as well as any others marked "(only)". Ignored if the --force flag is used. | | (skip) | Skip this test, unless the --force flag is used. | | (trace) | Turn on tracing for this test. It is sometimes useful to trace-debug a single test at a time. |

Order of precedence

Since multiple tags can be specified on a test, along with the possibility of the --force flag, here is the order of precedence, in descending order:

  • --force
  • (skip)
  • (only)

Tests codecov