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

Show the canonical directory
Preview of Shapefile: Parcels Attributes (.dbf)
dbf
327 B
Actual file preview for Shapefile: Parcels Attributes (.dbf)

Shapefile: Parcels Attributes (.dbf)

The parcel attribute table, joined to the .shp purely by record order: there is no key and no explicit link. Deleting a geometry without deleting its row shifts every subsequent attribute onto the wrong shape, silently.

File
DBF · Shapefile · 3 records
Use case
GeospatialData import+1· Conversion set
Preview of Shapefile: Parcels Geometry (.shp, Polygon with a hole)
shp
592 B
Actual file preview for Shapefile: Parcels Geometry (.shp, Polygon with a hole)

Shapefile: Parcels Geometry (.shp, Polygon with a hole)

Three Polygon records, one of which has two rings: the Mill Court parcel and its courtyard. Shapefile winds rings the opposite way to GeoJSON (exterior clockwise, holes anticlockwise), and it has no explicit hole marker, so winding is the only signal a reader has.

File
SHP · Shapefile · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile: Parcels Index (.shx)
shx
124 B
Actual file preview for Shapefile: Parcels Index (.shx)

Shapefile: Parcels Index (.shx)

The parcel index, whose second entry is markedly longer than the others because that record carries two rings. Use it together with the roads index to check that seek logic handles multi-part records as well as multi-record files.

File
SHX · Shapefile · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile: Projection Sidecar (.prj, WGS 84)
prj
145 B
Actual file preview for Shapefile: Projection Sidecar (.prj, WGS 84)

Shapefile: Projection Sidecar (.prj, WGS 84)

The one-line WKT that tells a reader what the .shp coordinates mean. Esri's flavour uses D_WGS_1984 and GCS_WGS_1984 rather than the OGC names and carries no EPSG authority code, so identifying it means matching the datum and spheroid rather than reading an ID.

File
PRJ · Shapefile
Use case
GeospatialConversion testing+1· Conversion set
Preview of Shapefile: Roads Attributes (.dbf with a decimal field)
dbf
309 B
Actual file preview for Shapefile: Roads Attributes (.dbf with a decimal field)

Shapefile: Roads Attributes (.dbf with a decimal field)

The road attribute table, including a numeric field declared with two decimal places. DBF stores numbers as right-justified ASCII, so the declared width and decimal count are the only thing that says 9.40 is not 940.

File
DBF · Shapefile · 3 records
Use case
GeospatialData import+1· Conversion set
Preview of Shapefile: Roads Geometry (.shp, 3 PolyLine records)
shp
428 B
Actual file preview for Shapefile: Roads Geometry (.shp, 3 PolyLine records)

Shapefile: Roads Geometry (.shp, 3 PolyLine records)

Three single-part PolyLine records, each carrying its own bounding box, a part index and a run of little-endian coordinate doubles. PolyLine and Polygon share this layout, which is why the shape-type byte in the header is the only thing that distinguishes an open line from a closed ring.

File
SHP · Shapefile · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile: Roads Index (.shx)
shx
124 B
Actual file preview for Shapefile: Roads Index (.shx)

Shapefile: Roads Index (.shx)

Unlike the point index, these entries have different lengths because each PolyLine holds a different number of vertices. That makes it the useful case for testing seek logic: a reader that assumes a fixed stride reads the first record correctly and then garbage.

File
SHX · Shapefile · 3 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile: Towns Attributes (.dbf, dBase III)
dbf
377 B
Actual file preview for Shapefile: Towns Attributes (.dbf, dBase III)

Shapefile: Towns Attributes (.dbf, dBase III)

The attribute table as a dBase III file: fixed-width, space-padded, ASCII numerics. Field names are capped at ten characters and there is no type for dates-with-time or for nested values, which is why shapefile export loses so much of a modern schema.

File
DBF · Shapefile · 5 records
Use case
GeospatialData import+1· Conversion set
Preview of Shapefile: Towns Geometry (.shp, 5 Point records)
shp
240 B
Actual file preview for Shapefile: Towns Geometry (.shp, 5 Point records)

Shapefile: Towns Geometry (.shp, 5 Point records)

The geometry half of a point shapefile: a 100-byte header carrying the shape type and bounding box, then five 20-byte Point records. The file is useless on its own: attributes live in the .dbf and the coordinate system in the .prj, which is the point of shipping the whole component set.

File
SHP · Shapefile · 5 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shapefile: Towns Index (.shx)
shx
140 B
Actual file preview for Shapefile: Towns Index (.shx)

Shapefile: Towns Index (.shx)

The index that lets a reader seek directly to record N of the .shp instead of walking the file. Its header duplicates the .shp header exactly, and a mismatch between the two is the most common way a hand-edited shapefile goes wrong.

File
SHX · Shapefile · 5 records
Use case
GeospatialSerialization testing+1· Conversion set
Preview of Shell: Backup script (strict mode, functions)
sh
706 B
Actual file preview for Shell: Backup script (strict mode, functions)

Shell: Backup script (strict mode, functions)

A realistic Bash script using strict mode (set -euo pipefail), functions, default parameters, a loop, and conditionals: an illustrative fixture (review before running) for testing highlighters, ShellCheck, and shfmt.

File
SH · Shell
Preview of Shell: Hello World
sh
79 B
Actual file preview for Shell: Hello World

Shell: Hello World

The classic hello-world in Bash (a shebang and echo, with LF line endings so it runs on Unix) for testing highlighters, ShellCheck, and shell parsers.

File
SH · Shell
Preview of Shift-JIS Japanese Text
txt
85 B
Actual file preview for Shift-JIS Japanese Text

Shift-JIS Japanese Text

A Shift-JIS encoded Japanese text file: a multi-byte East-Asian encoding, for testing CJK charset detection and Shift-JIS→UTF-8 conversion.

File
TXT · Text Encodings · Japanese
Preview of Shortest Round-Trip Float Representation: 15 vs 16 vs 17 Digits (.csv)
csv
976 B
Actual file preview for Shortest Round-Trip Float Representation: 15 vs 16 vs 17 Digits (.csv)

Shortest Round-Trip Float Representation: 15 vs 16 vs 17 Digits (.csv)

Twelve doubles printed at 15, 16 and 17 significant digits alongside their shortest round-tripping form, with a column recording which precisions actually recover the original bits. Fifteen digits is the default in a lot of formatting code and it loses values, which this table demonstrates rather than asserts.

File
CSV · Numeric Edges · 12 rows
Use case
Scientific dataCSV parsing+1· Conversion set
Preview of SI Unit Symbols in UTF-8: Look-Alike Codepoints (.csv)
csv
556 B
Actual file preview for SI Unit Symbols in UTF-8: Look-Alike Codepoints (.csv)

SI Unit Symbols in UTF-8: Look-Alike Codepoints (.csv)

Eight measurements whose unit symbols use the codepoints that have Unicode look-alikes: MICRO SIGN against GREEK MU, OHM SIGN against GREEK OMEGA, ANGSTROM SIGN against A-with-ring. Each row also carries an ASCII fallback, so a normalisation bug shows up as a column mismatch rather than as an invisible change.

File
CSV · Measurements · 8 rows
Use case
Scientific dataEncoding detection+1· Conversion set
Preview of Sign-up Form (HTML)
html
5.1 KB
Actual file preview for Sign-up Form (HTML)

Sign-up Form (HTML)

A downloadable account sign-up form with username/password constraints, a required terms checkbox, and native validation: a realistic registration form for testing form tooling.

File
HTML · Account Registration · 9 fields
Preview of Signature Block PDF (fillable)
pdf
5 KB
Actual file preview for Signature Block PDF (fillable)

Signature Block PDF (fillable)

A one-page agreement with a signature line and fillable AcroForm fields for the signer's name and date. A fixture for testing form-field detection, filling, and signature-workflow tooling.

File
PDF · Secured · 1 page
Preview of Signed Zero Round-Trip Through Text (.csv)
csv
588 B
Actual file preview for Signed Zero Round-Trip Through Text (.csv)

Signed Zero Round-Trip Through Text (.csv)

Nine ways of writing zero, what each parses to, and what dividing one by the result gives. Negative zero compares equal to positive zero yet behaves differently in division and in sign propagation, so a formatter that drops the sign changes results without changing any comparison.

File
CSV · Numeric Edges · 9 rows
Use case
Scientific dataCSV parsing+1· Conversion set
Preview of Significant Figures Lost to Float Parsing (.csv)
csv
478 B
Actual file preview for Significant Figures Lost to Float Parsing (.csv)

Significant Figures Lost to Float Parsing (.csv)

Eight written measurements where the trailing zeros carry the precision of the measurement, alongside what a float parse leaves behind. Parsing 1.200 to the double 1.2 is not a rounding error, it is the loss of the claim that the value is known to four figures.

File
CSV · Measurements · 8 rows
Use case
Scientific dataCSV parsing+1· Conversion set
Preview of Sigstore Bundle (v0.3 Shape)
json
4 KB
Actual file preview for Sigstore Bundle (v0.3 Shape)

Sigstore Bundle (v0.3 Shape)

A Sigstore bundle in the shape verifiers read: a SAMPLE certificate, a transparency-log entry with an inclusion proof and checkpoint, and the DSSE envelope carrying the provenance. Signatures, key ids and certificates here are SAMPLE placeholders: the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
JSON · Provenance
Use case
JSON parsingCertificate & key testing+1· Conversion set