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 215 of 221; 24 results per page.

Show the canonical directory
Preview of Wizard Flow Manifest (JSON)
json
1.3 KB
Actual file preview for Wizard Flow Manifest (JSON)

Wizard Flow Manifest (JSON)

The control data for the three-page sample sign-up wizard: which fields each page owns, which are mandatory, what is carried forward and which file comes next. Lets a driver plan the whole flow before opening a page.

File
JSON · Form Data
Use case
Form parsingForm testing+1· Conversion set
Preview of Wizard Step 1 of 3: Account (HTML)
html
5.8 KB
Actual file preview for Wizard Step 1 of 3: Account (HTML)

Wizard Step 1 of 3: Account (HTML)

Page one of a three-file sign-up wizard. Each page validates only its own fields and hands the wizard identifier forward in a hidden control, which is the pattern multi-page form automation has to follow.

File
HTML · Account Registration · 4 fields
Use case
Form testingForm parsing+3· Conversion set
Preview of Wizard Step 2 of 3: Profile (HTML)
html
6.3 KB
Actual file preview for Wizard Step 2 of 3: Profile (HTML)

Wizard Step 2 of 3: Profile (HTML)

Page two of the sign-up wizard. It repeats the wizard identifier, advances the step counter and collects profile fields, so a driver can be tested on resuming a flow it did not start.

File
HTML · Account Registration · 5 fields
Use case
Form testingForm parsing+3· Conversion set
Preview of Wizard Step 3 of 3: Review (HTML)
html
6.2 KB
Actual file preview for Wizard Step 3 of 3: Review (HTML)

Wizard Step 3 of 3: Review (HTML)

Page three of the sign-up wizard. It echoes the earlier answers into read-only controls that are still submitted, so a driver can be tested on the difference between a summary rendered as text and one rendered as form state.

File
HTML · Account Registration · 7 fields
Use case
Form testingForm parsing+3· Conversion set
Preview of WKB — Hex Strings in Both Byte Orders
txt
332 B
Actual file preview for WKB — Hex Strings in Both Byte Orders

WKB — Hex Strings in Both Byte Orders

The same point encoded both ways, plus a polygon, as uppercase hex — the form WKB takes when it travels through a text column or a SQL console. The byte-order flag is the first byte of each string, so the two point encodings differ everywhere after it.

File
TXT · Wkt Wkb · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKB — Raw Little-Endian Point
bin
21 B
Actual file preview for WKB — Raw Little-Endian Point

WKB — Raw Little-Endian Point

Twenty-one raw bytes: a byte-order flag, a little-endian geometry-type code of 1, and two float64 ordinates. This is the wire format PostGIS, GeoPackage and most spatial drivers actually move geometry in.

File
BIN · Wkt Wkb · ASCII
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — All Seven EMPTY Geometry Forms
wkt
126 B
Actual file preview for WKT — All Seven EMPTY Geometry Forms

WKT — All Seven EMPTY Geometry Forms

One EMPTY value for each WKT geometry type, one per line. Empty geometries are what spatial operations return when nothing is left, and round-tripping them is where a database driver usually turns a typed empty into a plain NULL.

File
WKT · Wkt Wkb · 7 records
Use case
GeospatialError handling+1· Conversion set
Preview of WKT — GEOMETRYCOLLECTION
wkt
192 B
Actual file preview for WKT — GEOMETRYCOLLECTION

WKT — GEOMETRYCOLLECTION

A single WKT value for a point, a line and a polygon in one value. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — Intentionally Invalid: Four Malformed Values
wkt
135 B
Actual file preview for WKT — Intentionally Invalid: Four Malformed Values

WKT — Intentionally Invalid: Four Malformed Values

Intentionally invalid: four WKT strings that each break in a different way — a point with one ordinate, a line whose last vertex is ragged, a polygon missing a closing bracket, and a misspelled keyword. Good parsers report which line and which character failed.

File
WKT · Wkt Wkb · 4 records
Use case
GeospatialError handling+1· Conversion set
Preview of WKT — LINESTRING
wkt
80 B
Actual file preview for WKT — LINESTRING

WKT — LINESTRING

A single WKT value for the four-vertex Coast Road. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — M (measured) Geometry
wkt
29 B
Actual file preview for WKT — M (measured) Geometry

WKT — M (measured) Geometry

A point with an M (measure) ordinate rather than a Z. Written without the tag this is indistinguishable from a Z geometry, and a parser that assumes the third ordinate is elevation silently converts a 345-second measure into a 345-metre altitude.

File
WKT · Wkt Wkb · ASCII
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — MULTIPOLYGON
wkt
330 B
Actual file preview for WKT — MULTIPOLYGON

WKT — MULTIPOLYGON

A single WKT value for all three parcels in one geometry. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — POINT
wkt
23 B
Actual file preview for WKT — POINT

WKT — POINT

A single WKT value for the Kestrel Bay town centre. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — POLYGON
wkt
167 B
Actual file preview for WKT — POLYGON

WKT — POLYGON

A single WKT value for the Mill Court parcel and its courtyard. WKT nests with bare parentheses and no type tags on the inner parts, so the number and depth of brackets is the only thing that distinguishes a polygon ring from a multipolygon member — which is where hand-written parsers go wrong.

File
WKT · Wkt Wkb · 1 record
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — Z (three-dimensional) Geometry
wkt
30 B
Actual file preview for WKT — Z (three-dimensional) Geometry

WKT — Z (three-dimensional) Geometry

A point with an explicit Z dimension tag. Some producers write `POINT Z (x y z)` and others write `POINT(x y z)` with no tag at all, so a parser has to cope with the dimension being declared or merely implied by the ordinate count.

File
WKT · Wkt Wkb · ASCII
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WKT — ZM (four-ordinate) Geometry
wkt
89 B
Actual file preview for WKT — ZM (four-ordinate) Geometry

WKT — ZM (four-ordinate) Geometry

A three-vertex line carrying both elevation and a measure, so each position has four ordinates. GeoJSON tops out at three, which makes this the fixture that shows what a WKT-to-GeoJSON conversion has to drop and whether it says so.

File
WKT · Wkt Wkb · ASCII
Use case
GeospatialSerialization testing+1· Conversion set
Preview of WMA — Windows Media Audio
wma
103.7 KB
Actual file preview for WMA — Windows Media Audio

WMA — Windows Media Audio

The clip as Windows Media Audio (WMA v2) in an ASF container — Microsoft's lossy codec. For testing WMA decoding and conversion to open formats.

File
WMA · Codec Set · WMA v2
Use case
Conversion testingAudio analysis· Conversion set
Preview of WMV — Windows Media Video
wmv
166.2 KB
Actual file preview for WMV — Windows Media Video

WMV — Windows Media Video

The clip as Windows Media Video (WMV2 in an ASF container) — Microsoft's legacy video format. For testing WMV decoding and conversion to open formats.

File
WMV · Wmv · 480x270
Preview of WOFF — CFF (Type 2) Outlines (55% of the raw sfnt)
woff
2.6 KB
Actual file preview for WOFF — CFF (Type 2) Outlines (55% of the raw sfnt)

WOFF — CFF (Type 2) Outlines (55% of the raw sfnt)

The same CFF (Type 2) face in a WOFF container, 55 percent of the raw sfnt size. Compare it against the other three containers in this group to see how much of a web font's weight is the format and how much is the design. Original typeface, free to use.

File
WOFF · Web Compression
Use case
Conversion testingWeb assets+1· Conversion set
Preview of WOFF — Novus Sans Sample
woff
1.2 KB
Actual file preview for WOFF — Novus Sans Sample

WOFF — Novus Sans Sample

The Novus Sans Sample demonstration typeface as WOFF (TrueType-flavoured web font) — one member of a TTF/OTF/WOFF/WOFF2 conversion set built from scratch with fontTools. Original and free to use; a fixture for testing font loading, subsetting, and conversion.

File
WOFF · Sans Sample
Use case
Conversion testing· Conversion set
Preview of WOFF — TrueType (glyf) Outlines (49% of the raw sfnt)
woff
3 KB
Actual file preview for WOFF — TrueType (glyf) Outlines (49% of the raw sfnt)

WOFF — TrueType (glyf) Outlines (49% of the raw sfnt)

The same TrueType (glyf) face in a WOFF container, 49 percent of the raw sfnt size. Compare it against the other three containers in this group to see how much of a web font's weight is the format and how much is the design. Original typeface, free to use.

File
WOFF · Web Compression
Use case
Conversion testingWeb assets+1· Conversion set
Preview of WOFF — Variable Font, wght Axis 300-900
woff
5.5 KB
Actual file preview for WOFF — Variable Font, wght Axis 300-900

WOFF — Variable Font, wght Axis 300-900

The wght variable font wrapped as WOFF — the same fvar/gvar payload in the web container, for testing that a compressor or a CDN pipeline preserves variation data. Original typeface, free to use.

File
WOFF · Variable Axes
Use case
Conversion testingWeb assets· Conversion set