Library for testing visual regression of PDFs. It uses pdf.js for conversion of a pdf to png (in node pdf.js depends on canvas). Than comparison is happening via jimp.
npm install -D pdf-visual-diff
This package exports single function comparePdfToSnapshot
. With the following signature:
/**
* Compare pdf to persisted snapshot. If one does not exist it is created
* @param pdf - path to pdf file or pdf loaded as Buffer
* @param snapshotDir - path to a directory where __snapshots__ folder is going to be created
* @param snapshotName - uniq name of a snapshot in the above path
* @param compareOptions - image comparison options
* @param compareOptions.tolerance - number value for error tolerance, ranges 0-1 (default: 0)
* @param compareOptions.maskRegions - `(page: number) => ReadonlyArray<RegionMask> | undefined` mask predefined regions per page, i.e. when there are parts of the pdf that change between tests
*/
type ComparePdfToSnapshot = (
pdf: string | Buffer,
snapshotDir: string,
snapshotName: string,
compareImageOpts: Partial<CompareOptions> = {},
) => Promise<boolean>
When function is executed it has following side effects:
- In absence of a previous snapshot file it converts pdf to an image, saves it as a snapshot and returns
true
- If there is a snapshot, then pdf is converted to an image and gets compared to the snapshot:
- if they differ function returns
false
and creates next to the snapshot image two other versions with suffixesnew
anddiff
.new
one is the current view of the pdf as an image, wherediff
shows the difference between the snapshot andnew
images - if they are equal function returns
true
and in case there arenew
anddiff
versions persisted it deletes them
- if they differ function returns
NB! You can find sample projects inside examples folder.
Write a test file:
import { comparePdfToSnapshot } from 'pdf-visual-diff'
import { expect } from 'chai'
describe('test pdf report visual regression', () => {
const pathToPdf = 'path to your pdf' // or you might pass in Buffer instead
it('should pass', () =>
comparePdfToSnapshot(pathToPdf, __dirname, 'my-awesome-report').then(
(x) => expect(x).to.be.true,
))
})
// Example with masking regions of a two page pdf
describe('pdf masking', () => {
it('should mask two page pdf', () => {
const blueMask: RegionMask = {
type: 'rectangle-mask',
x: 50,
y: 75,
width: 140,
height: 100,
color: 'Blue',
}
const greenMask: RegionMask = {
type: 'rectangle-mask',
x: 110,
y: 200,
width: 90,
height: 50,
color: 'Green',
}
comparePdfToSnapshot(twoPagePdfPath, __dirname, 'different-mask-per-page', {
maskRegions: (page) => {
switch (page) {
case 1:
return [blueMask]
case 2:
return [greenMask]
default:
return []
}
},
}).then((x) => expect(x).to.be.true))
})
})
pdf-visual-diff provides scripts for approving all new snapshots or discarding them. Add to your scripts
section in package.json
"test:pdf-approve": "pdf-visual-diff approve",
"test:pdf-discard": "pdf-visual-diff discard",
pdf-visual-diff approve
Approve new snapshots
Options:
--help Show help [boolean]
--version Show version number [boolean]
-p, --path [default: "."]
-s, --snapshots-dir-name [default: "__snapshots__"]
pdf-visual-diff discard
Discard new snapshots and diffs
Options:
--help Show help [boolean]
--version Show version number [boolean]
-p, --path [default: "."]
-s, --snapshots-dir-name [default: "__snapshots__"]
This packages provides custom jest matcher toMatchPdfSnapshot
"jest": {
"setupFilesAfterEnv": ["pdf-visual-diff/lib/toMatchPdfSnapshot"]
}
If you are using Typescript add import('pdf-visual-diff/lib/toMatchPdfSnapshot')
to your typings.
All you have to do in your tests is pass a path to the pdf or pdf content as Buffer.
const pathToPdf = 'path to your pdf' // or you might pass in Buffer instead
describe('test pdf report visual regression', () => {
it('should match', () => expect(pathToPdf).toMatchPdfSnapshot())
})
As you can see no need to fiddle with any dirs nor names. Needed information is extracted from jest context.