Skip to content
Novus Examples

Explore the test library

Find files, editable templates and browser test targets by what you need to make or test. Explore complete business kits for connected records, templates and expected results.

5297 results

Page 184 of 221; 24 results per page.

Show the canonical directory
Preview of Tagged PDF SAMPLE: Lang En
pdf
2 KB
Actual file preview for Tagged PDF SAMPLE: Lang En

Tagged PDF SAMPLE: Lang En

SAMPLE PDF documenting tagged/accessibility intent (lang-en) in specs: bookmark outline present; not a full PDF/UA export.

File
PDF · Tagged PDF Sample · 1 page
Use case
PDF editor testingEditor testing· Conversion set
Preview of Tagged PDF SAMPLE: Link Structure
pdf
2 KB
Actual file preview for Tagged PDF SAMPLE: Link Structure

Tagged PDF SAMPLE: Link Structure

SAMPLE PDF documenting tagged/accessibility intent (link-structure) in specs: bookmark outline present; not a full PDF/UA export.

File
PDF · Tagged PDF Sample · 1 page
Use case
PDF editor testingEditor testing· Conversion set
Preview of Tagged PDF SAMPLE: List Structure
pdf
2 KB
Actual file preview for Tagged PDF SAMPLE: List Structure

Tagged PDF SAMPLE: List Structure

SAMPLE PDF documenting tagged/accessibility intent (list-structure) in specs: bookmark outline present; not a full PDF/UA export.

File
PDF · Tagged PDF Sample · 1 page
Use case
PDF editor testingEditor testing· Conversion set
Preview of Tagged PDF SAMPLE: Pdfua Note
pdf
2 KB
Actual file preview for Tagged PDF SAMPLE: Pdfua Note

Tagged PDF SAMPLE: Pdfua Note

SAMPLE PDF documenting tagged/accessibility intent (pdfua-note) in specs: bookmark outline present; not a full PDF/UA export.

File
PDF · Tagged PDF Sample · 1 page
Use case
PDF editor testingEditor testing· Conversion set
Preview of Tagged PDF SAMPLE: Reading Order
pdf
2 KB
Actual file preview for Tagged PDF SAMPLE: Reading Order

Tagged PDF SAMPLE: Reading Order

SAMPLE PDF documenting tagged/accessibility intent (reading-order) in specs: bookmark outline present; not a full PDF/UA export.

File
PDF · Tagged PDF Sample · 1 page
Use case
PDF editor testingEditor testing· Conversion set
Preview of Tagged PDF SAMPLE: Role Map
pdf
2 KB
Actual file preview for Tagged PDF SAMPLE: Role Map

Tagged PDF SAMPLE: Role Map

SAMPLE PDF documenting tagged/accessibility intent (role-map) in specs: bookmark outline present; not a full PDF/UA export.

File
PDF · Tagged PDF Sample · 1 page
Use case
PDF editor testingEditor testing· Conversion set
Preview of Tagged PDF SAMPLE: Table Structure
pdf
2 KB
Actual file preview for Tagged PDF SAMPLE: Table Structure

Tagged PDF SAMPLE: Table Structure

SAMPLE PDF documenting tagged/accessibility intent (table-structure) in specs: bookmark outline present; not a full PDF/UA export.

File
PDF · Tagged PDF Sample · 1 page
Use case
PDF editor testingEditor testing· Conversion set
Preview of Tagged PDF SAMPLE: Toc Outline
pdf
2 KB
Actual file preview for Tagged PDF SAMPLE: Toc Outline

Tagged PDF SAMPLE: Toc Outline

SAMPLE PDF documenting tagged/accessibility intent (toc-outline) in specs: bookmark outline present; not a full PDF/UA export.

File
PDF · Tagged PDF Sample · 1 page
Use case
PDF editor testingEditor testing· Conversion set
Preview of TAP: Bail Out Mid-Run
tap
214 B
Actual file preview for TAP: Bail Out Mid-Run

TAP: Bail Out Mid-Run

A run abandoned after the third assertion with a Bail out! line, leaving five of the planned eight assertions unreported. The run is a failure even though only one assertion said not ok, and a consumer must not report 2/3 passing as a 67% pass rate.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: Comments and Diagnostic Lines
tap
350 B
Actual file preview for TAP: Comments and Diagnostic Lines

TAP: Comments and Diagnostic Lines

Free-form # comment lines interleaved with assertions, including a trailing summary block. Comments carry no result and must never shift assertion numbering, which is exactly what a parser counting lines instead of ok/not ok tokens gets wrong.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: Entire Plan Skipped
tap
87 B
Actual file preview for TAP: Entire Plan Skipped

TAP: Entire Plan Skipped

A whole suite declined in a single line: a zero-length plan with a SKIP directive and a reason. It is a valid, complete TAP stream containing no assertions, and a consumer must report it as skipped rather than as an empty pass or a parse error.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: Failures with YAML Diagnostics
tap
435 B
Actual file preview for TAP: Failures with YAML Diagnostics

TAP: Failures with YAML Diagnostics

Two failing assertions, each followed by an indented YAML diagnostic block carrying the expected and actual values and a file/line location. The block is where every useful failure message in TAP lives, and it is the part naive line-based parsers throw away.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: Nested Subtests (Indented)
tap
367 B
Actual file preview for TAP: Nested Subtests (Indented)

TAP: Nested Subtests (Indented)

Two subtests, each an indented TAP stream with its own plan, rolled up into two top-level assertions. Flatten it and you count seven assertions instead of two; ignore the indentation and the nested failure is counted twice.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: Plan Count Does Not Match
tap
331 B
Actual file preview for TAP: Plan Count Does Not Match

TAP: Plan Count Does Not Match

Every assertion in this stream says ok, but the plan promised ten and only eight arrived: the signature of a runner that crashed after its last reported assertion. A consumer that only counts not ok lines calls this a clean pass.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: Plan First, All Passing
tap
251 B
Actual file preview for TAP: Plan First, All Passing

TAP: Plan First, All Passing

The canonical TAP shape: a version line, a leading plan, then six passing assertions in order. Anything a TAP consumer does with a real stream it must do with this one first.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: SKIP Directives
tap
344 B
Actual file preview for TAP: SKIP Directives

TAP: SKIP Directives

Two assertions marked # SKIP with a reason, alongside a genuine failure. Skipped assertions are written as ok, so counting ok lines reports 5 passes when only 3 tests actually ran.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: TODO Directives
tap
299 B
Actual file preview for TAP: TODO Directives

TAP: TODO Directives

Two failing assertions marked # TODO, meaning they are known-unfinished work rather than regressions. A TODO failure must not fail the run, so a consumer that treats every not ok as a build breaker turns this green run red.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: TODO That Unexpectedly Passed
tap
220 B
Actual file preview for TAP: TODO That Unexpectedly Passed

TAP: TODO That Unexpectedly Passed

Assertion 2 is marked TODO but reports ok: an unexpected success, which means the feature landed and the marker is now stale. Harnesses such as prove report this as a bonus rather than a pass, and dropping the distinction lets stale TODOs accumulate forever.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: Trailing Plan
tap
182 B
Actual file preview for TAP: Trailing Plan

TAP: Trailing Plan

The same stream with the plan at the end, which is what a harness emits when it does not know the test count up front. A consumer that requires a leading plan rejects a perfectly valid stream.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP: Version 14 Subtest Syntax
tap
383 B
Actual file preview for TAP: Version 14 Subtest Syntax

TAP: Version 14 Subtest Syntax

TAP 14 with an explicit version line and a pragma inside a subtest. Consumers pinned to version 13 either reject the stream outright or ignore the pragma, so this file separates the two behaviours.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAR - Directory Members and an Empty Directory
tar
10 KB
Actual file preview for TAR - Directory Members and an Empty Directory

TAR - Directory Members and an Empty Directory

Three directory records with distinct modes, one of which - tree/empty/ - has no members underneath it and therefore exists only because the record does. A reader that synthesises directories from member paths alone silently loses it, and loses the 0750 and 0700 modes on the other two.

File
TAR · Tar Records · 5 members
Use case
Conversion testingMetadata testing· Conversion set
Preview of TAR - Empty Archive
tar
1 KB
Actual file preview for TAR - Empty Archive

TAR - Empty Archive

An empty tar is not a zero-byte file - it is exactly two 512-byte blocks of zeros, the end-of-archive marker with nothing in front of it. Writers that emit nothing at all produce a file most readers reject, which is the bug this 1024-byte file exists to distinguish.

File
TAR · Empty · 0 members
Use case
Conversion testingError handling· Conversion set
Preview of TAR - FIFO and Device Node Records
tar
10 KB
Actual file preview for TAR - FIFO and Device Node Records

TAR - FIFO and Device Node Records

A FIFO, a character device and a block device, each a header with no data blocks and with the device numbers in the devmajor/devminor fields. Unprivileged extraction cannot create the two device nodes, so the correct behaviour is to skip them with a warning rather than to abort the whole archive or to create empty regular files in their place.

File
TAR · Tar Records · 4 members
Use case
Conversion testingError handling+1· Conversion set
Preview of TAR - GNU Format
tar
10 KB
Actual file preview for TAR - GNU Format

TAR - GNU Format

GNU tar's extension of the same header, identified by its own magic: long names get their own 'L' record, oversized numeric fields switch to base-256, and sparse files get an in-header map. All three archives in this group hold byte-identical members with identical ownership and modification times, so any other difference a reader reports between them comes from the header encoding alone.

File
TAR · Tar Format · 3 members
Use case
Conversion testingMetadata testing· Conversion set