Skip to content
Novus Examples
tar4.2 KB

TAR - Trailing Data After the End Blocks

A complete tar with 218 bytes of plain text appended after the end-of-archive blocks. A reader must stop at those blocks; one that keeps scanning finds a block whose checksum does not verify and may report the whole archive as corrupt instead of ignoring bytes that were never part of it.

Archive contents — 3 entriestar
  • README.txt
  • app.log
  • app.1.log

Specifications

Seed
20260807
Members
3
End Of Archive Blocks
2
Trailing Bytes
218
Trailing Content
plain ASCII comment lines, not a tar header
Requirement
stop at the end-of-archive blocks; do not parse past them

Testing contract

Expected to recover
Scenario
Extract the archive and then read the tail of the file as text.
Expected result
Exactly 3 members are listed and extracted with no error, and the final 218 bytes read as ASCII comment lines rather than as a member.

What is a .tar file?

TAR (Tape Archive) is a Unix archive format that concatenates files with their metadata into a single uncompressed stream of fixed-size blocks. It preserves permissions, ownership, and directory structure but applies no compression itself. It is usually paired with a compressor such as gzip or xz.

How to use this file

Use an example TAR to test archive extraction, metadata and permission preservation, streaming block parsing, and pipelines that combine tar with external compression.

How to use this file for testing

“TAR - Trailing Data After the End Blocks” is a deterministic Novus Examples fixture for Conversion testing, Error handling. The same content exported across many formats and linked as a group, so you can convert one and diff against the expected twin.

Documented properties for this file: seed 20260807. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Archive fixtures are documented down to their member list (shown on this page) and are deliberately safe — no zip bombs, executables, or hidden payloads. Test extractors against nested, unicode, empty, and encrypted variants.

Code examples

tar -tf trailing-data.tar       # list
tar -xf trailing-data.tar -C out/  # extract

Generated by generation/archives_p7.py. Free for any use, no attribution required — license.