Running the test suite

Prism has a test suite, that ensures that the correct tokens are matched.

Running the test suite

Running the test suite is simple: just call npm test.

All test files are run in isolation. A new prism instance is created for each test case. This will slow the test runner a bit down, but we can be sure that nothing leaks into the next test case.

Running tests for specific languages

To run the tests only for one language, you can use the language parameter: npm test -- --language=markup.

You can even specify multiple languages: npm test -- --language=markup --language=css.

Writing tests

Thank you for writing tests! Tests are awesome! They ensure, that we can improve the codebase without breaking anything. Also, this way, we can ensure that upgrading Prism is as painless as possible for you.

You can add new tests by creating a new test case file (with the .test file extension) in the tests directory which is located at /tests/languages/${language}.

Language directories

All tests are sorted into directories in the tests/languages directory. Each directory name encodes, which language you are currently testing.

All language names must match the names from the definition in components.js.

Example 1: testing a language in isolation (default use case)

Just put your test file into the directory of the language you want to test.

So, if you want to test CSS, put your test file in /tests/languages/css to test CSS only. If you create a test case in this directory, the test runner will ensure that the css language definition including all required language definitions are correctly loaded.

Example 2: testing language injection

If you want to test language injection, you typically need to load two or more languages where one language is the “main” language that is being tested, with all other languages being injected into it.

You need to define multiple languages by separating them using a + sign: markup+php.

The languages are loaded in order, so first markup (+ dependencies) is loaded, then php (+ dependencies). The test loader ensures that no language is loaded more than once (for example if two languages have the same dependencies).

By default the last language is the main language: php+markup will have markup as main language. This is equal to putting your code in the following code block:

...
<pre><code class="language-markup">
	<!-- your code here -->
</code><pre>
...

If you need to load the languages in a given order, but you don't want to use the last language as main language, you can mark the main language with an exclamation mark: php!+markup. This will use php as main language. (You can only define one main language. The test runner will fail all tests in directories with more than one main language.)

Note: by loading multiple languages you can do integration tests (ensure that loading two or more languages together won't break anything).

Creating your test case file

At first you need to create a new file in the language directory, you want to test.

Use a proper name for your test case. Please use one case of the following conventions:

You can use all conventions as a prefix, so string_interpolation_feature_inline.test is possible. But please take a minute or two to think of a proper name of your test case file. You are writing code not only for the computers, but also for your fellow developers.

Writing your test

The structure of a test case file is as follows:


... language snippet...
----
... the simplified token stream you expect ...

Your file is built up of two or three sections, separated by ten or more dashes -, starting at the begin of the line:

  1. Your language snippet. The code you want to compile using Prism. (required)
  2. The simplified token stream you expect. Needs to be valid JSON. (required)
  3. A comment explaining the test case. (optional)

The easiest way would be to look at an existing test file:

var a = 5;

----------------------------------------------------

[
	["keyword", "var"],
	" a ",
	["operator", "="],
	["number", "5"],
	["punctuation", ";"]
]

----------------------------------------------------

This is a comment explaining this test case.

Explaining the simplified token stream

While compiling, Prism transforms your source code into a token stream. This is basically a tree of nested tokens (or arrays, or strings).

As these trees are hard to write by hand, the test runner uses a simplified version of it.

It uses the following rules:

For further information: reading the tests of the test runner (tests/testrunner-tests.js) will help you understand the transformation.

Writing specific tests

Sometimes, using the token stream tests is not powerful enough. By creating a test file with the file extension .js instead of .test, you can make Prism highlight arbitrary pieces of code and check their HTML results.

The language is determined by the folder containing the test file lies, as explained in the previous section.

The structure of your test file will look like this, for example:

module.exports = {
	'&#x278a;': '<span class="token entity" title="&#x278a;">&amp;#x278a;</span>',
	'&#182;': '<span class="token entity" title="&#182;">&amp;#182;</span>',
};

The keys are the codes which will be highlighted by Prism. The values are the expected results, as HTML.

Test runner tests

The test runner itself is tested in a separate test case. You can find all “test core” related tests in tests/testrunner-tests.js.

You shouldn't need to touch this file ever, except you modify the test runner code.

Internal structure

The global test flow is at follows:

  1. Run all internal tests (test the test runner).
  2. Find all language tests.
  3. Run all language tests individually.
  4. Report the results.