Skip to content
Novus Examples
diff414 B

Unified Diff - Diff of a Checked-In Patch File

Quilt, Debian and vendor trees check patches into the repository, so editing one produces a diff whose body is itself full of `+++`, `---` and `@@` lines and whose section heading is a `diff --git` line. Any scanner that finds file boundaries by searching for those tokens anywhere in the stream splits this single-file diff into several phantom files.

Preview — first 12 linesdiff
--- a/debian/patches/0001-guard-balances.patch	2026-03-02 09:14:03.000000000 +0000
+++ b/debian/patches/0001-guard-balances.patch	2026-03-02 10:41:55.000000000 +0000
@@ -15,7 +15,7 @@ diff --git a/internal/ledger/apply.go b/internal/ledger/apply.go
  		return balance, ErrShortBalance
  	}
 +	if delta == 0 {
-+		return balance, nil
++		return balance, nil // no-op posting
 +	}
  	return balance + delta, nil
  }

Specifications

Seed
20260807
Diff Format
unified
Context
3
Files
1
Target
debian/patches/0001-guard-balances.patch
Nested
true
Line Endings
LF
Encoding
UTF-8

Testing contract

Expected to pass
Scenario
Split a diff into file sections when the hunk bodies contain diff-like text and the section heading is a diff --git line.
Expected result
Exactly one file section is reported — debian/patches/0001-guard-balances.patch — and no section is created for internal/ledger/apply.go.

What is a .diff file?

A .diff file records the difference between two versions of one or more text files. The unified format — the default almost everywhere — names the old and new files on `---` and `+++` lines, then lists hunks introduced by `@@ -old,count +new,count @@` in which context lines are unprefixed and changed lines are prefixed with `-` or `+`. Older context and normal diff formats exist but are rarely produced today.

How to use this file

Use an example .diff file to test diff parsers, syntax highlighters, and merge tooling — verifying hunk-offset arithmetic, correct handling of context lines that begin with a space, and behaviour on files whose changes include trailing-whitespace or line-ending differences.

How to use this file for testing

“Unified Diff - Diff of a Checked-In Patch File” is a deterministic Novus Examples fixture for Error handling, Visual diff / regression, Code parsing. Deliberately corrupt and invalid files, clearly labelled, for testing how your tool fails.

Documented properties for this file: seed 20260807 · UTF-8 · LF. 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.

Diff and patch fixtures name their target paths and the exact edge case they exercise — rename, mode change, binary hunk, CRLF↔LF, or missing trailing newline. Apply or render them against the documented before-state; every author, path, and hash is fictional.

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