Skip to content

Commit

Permalink
test: add test to cover /Names in catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Hernández authored and vanbroup committed Mar 14, 2024
1 parent 5a0cd0a commit c34fd5f
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 44 deletions.
96 changes: 52 additions & 44 deletions sign/pdfcatalog_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,56 +7,64 @@ import (
"github.com/digitorus/pdf"
)

var test_files = []struct {
file string
expected_catalog string
}{
{"../testfiles/testfile20.pdf", "11 0 obj\n<< /Type /Catalog /Version /2.0 /Pages 3 0 R /AcroForm << /Fields [10 0 R] /NeedAppearances false /SigFlags 1 >> /Perms << /UR3 0 0 R >> >>\nendobj\n"},
{"../testfiles/testfile21.pdf", "17 0 obj\n<< /Type /Catalog /Version /1.0 /Names 6 0 R /Pages 9 0 R /AcroForm << /Fields [16 0 R] /NeedAppearances false /SigFlags 1 >> /Perms << /UR3 0 0 R >> >>\nendobj\n"},
}

func TestCreateCatalog(t *testing.T) {
input_file, err := os.Open("../testfiles/testfile20.pdf")
if err != nil {
t.Errorf("Failed to load test PDF")
return
}
for _, test_file := range test_files {
input_file, err := os.Open(test_file.file)
if err != nil {
t.Errorf("Failed to load test PDF")
return
}

finfo, err := input_file.Stat()
if err != nil {
t.Errorf("Failed to load test PDF")
return
}
size := finfo.Size()
finfo, err := input_file.Stat()
if err != nil {
t.Errorf("Failed to load test PDF")
return
}
size := finfo.Size()

rdr, err := pdf.NewReader(input_file, size)
if err != nil {
t.Errorf("Failed to load test PDF")
return
}
rdr, err := pdf.NewReader(input_file, size)
if err != nil {
t.Errorf("Failed to load test PDF")
return
}

context := SignContext{
Filesize: size + 1,
PDFReader: rdr,
InputFile: input_file,
VisualSignData: VisualSignData{
ObjectId: uint32(rdr.XrefInformation.ItemCount),
},
CatalogData: CatalogData{
ObjectId: uint32(rdr.XrefInformation.ItemCount) + 1,
},
InfoData: InfoData{
ObjectId: uint32(rdr.XrefInformation.ItemCount) + 2,
},
SignData: SignData{
Signature: SignDataSignature{
CertType: UsageRightsSignature,
DocMDPPerm: AllowFillingExistingFormFieldsAndSignaturesPerms,
context := SignContext{
Filesize: size + 1,
PDFReader: rdr,
InputFile: input_file,
VisualSignData: VisualSignData{
ObjectId: uint32(rdr.XrefInformation.ItemCount),
},
},
}

catalog, err := context.createCatalog()
if err != nil {
t.Errorf("%s", err.Error())
return
}
CatalogData: CatalogData{
ObjectId: uint32(rdr.XrefInformation.ItemCount) + 1,
},
InfoData: InfoData{
ObjectId: uint32(rdr.XrefInformation.ItemCount) + 2,
},
SignData: SignData{
Signature: SignDataSignature{
CertType: UsageRightsSignature,
DocMDPPerm: AllowFillingExistingFormFieldsAndSignaturesPerms,
},
},
}

expected_catalog := "11 0 obj\n<< /Type /Catalog /Version /2.0 /Pages 3 0 R /AcroForm << /Fields [10 0 R] /NeedAppearances false /SigFlags 1 >> /Perms << /UR3 0 0 R >> >>\nendobj\n"
catalog, err := context.createCatalog()
if err != nil {
t.Errorf("%s", err.Error())
return
}

if catalog != expected_catalog {
t.Errorf("Catalog mismatch, expected %s, but got %s", expected_catalog, catalog)
if catalog != test_file.expected_catalog {
t.Errorf("Catalog mismatch, expected %s, but got %s", test_file.expected_catalog, catalog)
}
}
}
Binary file added testfiles/testfile21.pdf
Binary file not shown.

0 comments on commit c34fd5f

Please sign in to comment.